-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.03 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.03 KB
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
{
"name": "statoscope-tech",
"private": true,
"scripts": {
"start": "static public -a 0.0.0.0 -p ${PORT:-8080}",
"build": "npm run build:webpack && npm run build:rspack",
"build:webpack": "webpack && cp src/statoscope.png src/favicon.ico public/ && statoscope validate --config=./statoscope.config.demo.js --input public/demo-stats.webpack.json || true",
"build:rspack": "rspack && statoscope validate --config=./statoscope.config.demo.js --input public/demo-stats.rspack.json || true",
"predev": "npm run build",
"dev": "webpack serve",
"prebuild:prod": "rm -rf public/*",
"build:prod": "NODE_ENV=production npm run build",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint . --ext .js,.ts --cache",
"lint:eslint:fix": "npm run lint:eslint -- --fix",
"statoscope:validate": "statoscope validate --input public/demo-stats.json",
"statoscope:validate-diff": "statoscope validate --input input.json --reference reference.json"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@rsdoctor/rspack-plugin": "^1.0.1",
"@rspack/cli": "^1.3.2",
"@rspack/core": "^1.3.2",
"@statoscope/cli": "^5.29.0",
"@statoscope/stats-validator-plugin-webpack": "^5.29.0",
"@statoscope/webpack-ui": "5.29.0",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"mustache": "^4.2.0",
"prettier": "^2.7.1",
"style-loader": "^4.0.0",
"ts-node": "^10.9.2",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1"
},
"dependencies": {
"@discoveryjs/json-ext": "^0.5.7",
"@statoscope/webpack-plugin": "^5.29.0",
"@wdxlab/events": "^1.1.0",
"node-static": "^0.7.11"
}
}