-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.06 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
{
"name": "nba-stats-validator",
"version": "1.0.0",
"description": "WebApp to validate nba stats",
"main": "./assets/js/index.js",
"license": "GNU",
"engines": {
"npm": "9.6.7"
},
"scripts": {
"watch": "webpack --watch --mode=development",
"serve": "browser-sync start -s ./public -f ./ --no-notify --index index.html",
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development"
},
"dependencies": {
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"html-webpack-plugin": "^5.6.3",
"npm": "^10.9.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.95.0"
},
"devDependencies": {
"browser-sync": "^3.0.3",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-standard": "^36.0.1",
"webpack-cli": "^5.1.4"
}
}