-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.49 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
{
"name": "reaction-pics",
"version": "1.0.0",
"description": "Reaction Pics",
"private": true,
"type": "module",
"scripts": {
"eslint": "eslint -c .eslint.config.js server/static/js server/test",
"minify": "npm run build",
"test": "npm run eslint && npm run minify && npm run wdio",
"build": "webpack --mode=production --node-env=production",
"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/reaction-pics.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/albertyw/reaction-pics/issues"
},
"homepage": "https://github.com/albertyw/reaction-pics#readme",
"devDependencies": {
"@wdio/browser-runner": "^9.0.9",
"@wdio/cli": "^9.0.9",
"@wdio/mocha-framework": "^8.35.0",
"@wdio/spec-reporter": "^8.32.4",
"chai": "^5.0.0",
"eslint": "^9.0.0",
"globals": "^15.0.0"
},
"dependencies": {
"axios": "^1.0.0",
"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.19.4",
"vanilla-lazyload": "^19.0.0",
"varsnap": "^1.6.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.1"
}
}