-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.21 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
52
53
54
{
"name": "autoscale",
"version": "1.0.0",
"description": "",
"main": "./src/app.js",
"engines": {
"node": ">= 12.0.0"
},
"license": "",
"author": "",
"dependencies": {
"cluster": "^0.7.7",
"core-js": "^3.9.1",
"express": "~4.16.1",
"os": "^0.1.1",
"regenerator-runtime": "^0.13.7",
"body-parser": "^1.19.0",
"fs": "^0.0.1-security",
"proper-lockfile": "^4.1.2"
},
"scripts": {
"test": "jest --coverage --verbose",
"build": "webpack --progress --colors --mode=development",
"build-prod": "webpack --mode=production"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"clean-webpack-plugin": "^1.0.1",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-jest": "^23.2.0",
"eslint-plugin-node": "^11.0.0",
"jest": "^25.5.2",
"jest-extended": "^0.11.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"zip-webpack-plugin": "^3.0.0"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"jest-extended"
]
},
"babel": {
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
}
}