-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "strategio",
"version": "1.0.0",
"main": "public/js/script.js",
"scripts": {
"start": "node server/index.js",
"build": "webpack --mode production",
"build-dev": "webpack --mode development",
"lint": "eslint src",
"lint-fix": "eslint --fix src"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"debug": "^3.1.0",
"express": "^4.16.3",
"express-history-api-fallback": "^2.2.1",
"express-http-proxy": "^1.4.0",
"morgan": "^1.9.0",
"multer": "^1.4.0",
"serve-favicon": "^2.5.0",
"style-loader": "^0.23.0",
"uuid": "^3.3.2",
"typescript": "^3.1.6"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"ts-loader": "^4.3.1",
"url-loader": "^1.1.2",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.2"
}
}