-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@jlbelanger/corrie",
"version": "1.0.0",
"description": "Find connections between characters on Coronation Street.",
"license": "GPL-3.0-only",
"author": {
"name": "Jenny Belanger",
"email": "mail@jennybelanger.com",
"url": "https://www.jennybelanger.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/jlbelanger/corrie.git"
},
"scripts": {
"build": "node_modules/.bin/webpack --mode=production",
"lint": "yarn lint:css && yarn lint:js",
"lint:css": "node_modules/.bin/stylelint 'resources/scss/**/*.scss'",
"lint:js": "node_modules/.bin/eslint . --ext .js",
"lint:php": "./vendor/bin/phpcs",
"test:php": "./vendor/bin/phpunit",
"start": "npx update-browserslist-db@latest && node_modules/.bin/webpack --watch"
},
"dependencies": {
"normalize.css": "^8.0.1"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"browser-sync": "^2.29.3",
"browser-sync-webpack-plugin": "^2.3.0",
"css-loader": "^6.8.1",
"cssnano": "^6.0.1",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.32",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.3.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^5.3.1",
"stylelint-stylistic": "^0.4.3",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-manifest-plugin": "^5.0.0"
},
"browserslist": [
"defaults",
"iOS >= 12"
]
}