-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.54 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": "awsconsole",
"version": "1.0.0",
"description": "",
"main": "server/app.js",
"scripts": {
"pretest": "eslint --ignore-path .gitignore .",
"test": "npm run pretest && karma start",
"start": "node server/app.js",
"start:dev": "SET Node_ENV=development& node server/app.js",
"cypress:open": "cypress open",
"build": "webpack --mode production",
"build:dev": "webpack --mode development --config webpack.dev.config.js",
"postinstall": "webpack"
},
"author": "",
"license": "ISC",
"dependencies": {
"angular": "^1.7.5",
"angular-route": "^1.7.5",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.4.4",
"passport": "^0.4.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"angular-mocks": "^1.7.5",
"babel-loader": "^8.0.5",
"babel-plugin-angularjs-annotate": "^0.10.0",
"css-loader": "^2.1.0",
"cypress": "^3.1.4",
"eslint": "^5.12.0",
"eslint-plugin-cypress": "^2.2.0",
"jasmine-core": "^3.3.0",
"karma": "^3.1.4",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"style-loader": "^0.23.1",
"svg-inline-loader": "^0.8.0",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-middleware": "^3.5.0",
"webpack-hot-middleware": "^2.24.3"
}
}