-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 864 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 864 Bytes
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
{
"name": "life_restart",
"type": "module",
"bin": "repl/index.js",
"scripts": {
"test": "node test",
"verify": "node ./utils/verifyCondition",
"xlsxTransform": "node utils/xlsxTransform.js data",
"start": "npm run dev",
"dev": "webpack serve --open /view/index.html",
"build": "webpack --mode production",
"deploy": "npm run verify && rm -rf public/* && npm run build && rm -rf docs/* && cp -R ./view/* ./docs && cp ./public/* ./docs && cp ./CNAME ./docs"
},
"dependencies": {
"@babel/core": "^7.15.4",
"@babel/preset-env": "^7.15.4",
"babel-loader": "^8.2.2",
"core-js": "^3.17.2",
"webpack": "^5.51.2",
"webpack-dev-server": "^4.1.0",
"xlsx": "^0.17.0"
},
"devDependencies": {
"webpack-cli": "^4.8.0"
}
}