-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "react-standard",
"version": "1.0.0",
"devDependencies": {
"@babel/preset-env": "^7.7.7",
"@babel/preset-stage-0": "^7.0.0",
"@imgcook/dsl-helper": "0.0.1-alpha.0",
"@types/node": "^16.11.7",
"body-parser": "^1.20.0",
"chai": "^4.3.4",
"co": "^4.6.0",
"css": "^3.0.0",
"express": "^4.18.1",
"fs-extra": "^8.0.1",
"lodash": "^4.17.11",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"open": "^8.4.0",
"prettier": "^2.4.1",
"thunkify": "^2.1.2",
"ts-loader": "^8.2.0",
"typescript": "^4.4.4",
"vm2": "^3.5.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"xml-beautifier": "^0.4.0",
"xtemplate": "^4.6.1",
"xtpl": "^3.4.0"
},
"scripts": {
"debug": "npx webpack --config webpack.config.js --mode=development",
"build": "npx webpack --config webpack.config.js --mode=production",
"demo": "node ./test/index.js",
"test": "mocha --colors test/**/*.test.js",
"start": "node ./test/index.js",
"server": "node ./test/server.js",
"test-with-coverage": "nyc --reporter=html mocha --exit --colors test/**/*.test.js "
}
}