-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.4 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
{
"name": "albertyw.com",
"type": "module",
"sideEffects": [
"./static/js/index.js",
"*.css"
],
"scripts": {
"eslint": "eslint -c .eslint.config.js .",
"stylelint": "stylelint static/css/*",
"test": "npm run build:dev && npm run eslint && npm run stylelint && npm run wdio",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"wdio": "wdio run ./wdio.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/albertyw/albertyw.com.git"
},
"license": "MIT",
"private": true,
"dependencies": {
"@popperjs/core": "^2.11.7",
"bootstrap": "^5.0.0",
"css-loader": "^7.0.0",
"css-minimizer-webpack-plugin": "^7.0.0",
"dotenv-webpack": "^8.0.1",
"logfit": "^0.9.0",
"mini-css-extract-plugin": "^2.7.5",
"normalize.css": "^8.0.1",
"rollbar": "^2.20.0",
"varsnap": "^1.8.0",
"webpack": "^5.80.0",
"webpack-cli": "^6.0.0"
},
"devDependencies": {
"@wdio/browser-runner": "^9.0.0",
"@wdio/cli": "^9.0.0",
"@wdio/mocha-framework": "^9.0.0",
"@wdio/spec-reporter": "^9.0.0",
"chai": "^5.0.0",
"dotenv": "^16.0.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"stylelint": "^16.0.2",
"stylelint-config-standard": "^36.0.0"
},
"stylelint": {
"extends": "stylelint-config-standard"
}
}