This repository was archived by the owner on Jun 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.78 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.78 KB
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
55
56
57
{
"name": "meanexample",
"version": "1.0.0",
"description": "A generated IBM Cloud application",
"private": true,
"engines": {
"node": "^10.0.0"
},
"scripts": {
"start": "node server/server.js",
"debug": "npm-run-all --parallel client-reload-proxy inspector",
"test": "nyc mocha --exit",
"dev": "npm-run-all --parallel client-reload-proxy server-reload",
"build": "webpack --progress --config webpack.prod.js",
"lint": "eslint src",
"postinstall": "npm run build; npm prune --production",
"client-reload": "webpack-dev-server --host 0.0.0.0 --history-api-fallback --progress --inline --config webpack.dev-standalone.js",
"client-reload-proxy": "webpack-dev-server --host 0.0.0.0 --history-api-fallback --inline --config webpack.dev-proxy.js",
"server-reload": "nodemon server/server.js",
"inpsector": "node --inspect=0.0.0.0:9229 server/server.js"
},
"nodemonConfig": {
"env": {
"NODE_HEAPDUMP_OPTIONS": "nosignal"
}
},
"dependencies": {
"body-parser": "^1.17.1",
"connect-mongo": "^3.2.0",
"express": "^4.15.3",
"express-session": "^1.15.2",
"ibm-cloud-env": "^0",
"log4js": "^3.0.5",
"mongoose": "^5.8.6"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"chai": "^4.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.1",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"ng-annotate-loader": "^0.6.1",
"node-sass": "^4.8.3",
"nodemon": "^1.12.1",
"npm-run-all": "^4.1.2",
"nyc": "^15.0.0",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.1.3",
"webpack-merge": "^4.1.1"
}
}