-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.69 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
55
56
57
58
{
"name": "connapp-web-api",
"version": "0.8.0",
"description": "Web CMS for the ConnApp",
"main": "index.js",
"scripts": {
"start": "./startup.sh",
"build": "./node_modules/webpack/bin/webpack.js",
"setup": "yarn && cd app && yarn",
"build-watch": "./node_modules/webpack/bin/webpack.js --watch",
"start-dev-server": "npm run start-api-watch && npm run start-webpack-server",
"start-webpack-server": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline",
"start-api-watch": "./node_modules/nodemon/bin/nodemon.js",
"test": "./node_modules/jest/bin/jest.js --runInBand"
},
"repository": "git+https://github.com/ConnApp/connapp-web-cms.git",
"keywords": [
"javascript",
"node",
"MEAN",
"mongodb",
"angular",
"CMS",
"express"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ConnApp/connapp-web-cms/issues"
},
"homepage": "https://github.com/ConnApp/connapp-web-cms#readme",
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.17.2",
"consign": "^0.1.6",
"debug": "^3.0.0",
"express": "^4.15.3",
"express-session": "1.5.x",
"method-override": "^2.3.9",
"mongoose": "^4.11.9",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"promise": "^8.0.1",
"wampy": "^6.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.6.1",
"jest": "^20.0.4",
"nodemon": "^1.11.0",
"superagent": "^3.6.0",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"author": "Diego Leal <[email protected]>"
}