-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.08 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "test",
"version": "1.0.0",
"description": "The backend code for {{app_name}}",
"main": "server.js",
"scripts": {
"preinstall": "npm update",
"postinstall": "npm prune",
"test": "mocha -t 20000 --compilers js:@babel/register tests --exit",
"deploy": "npm i && npm start",
"server": "node server/loader.js",
"server:dev": "./node_modules/.bin/nodemon server/loader.js",
"babel-build": "./node_modules/.bin/babel -d ./babel_build ./server -s"
},
"dependencies": {
"appknit-backend-bundle": "^1.0.72",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"body-parser": "^1.18.2",
"busboy-body-parser": "^0.3.1",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"core-js": "^2.6.0",
"cors": "^2.8.5",
"dotenv": "^4.0.0",
"es6-promise": "^4.1.1",
"express": "^4.15.5",
"express-session": "^1.15.6",
"jsonschema": "^1.2.0",
"moment": "^2.23.0",
"mongodb": "^3.2.3",
"mongoose": "^5.7.5",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"pm2": "^2.8.0",
"sharp": "0.21.1"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-decorators": "^7.2.0",
"@babel/plugin-syntax-async-generators": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"chai": "^4.1.2",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.8"
},
"repository": {
"type": "git",
"url": "https://github.com/App-Knit/{{app_name}}.git"
},
"author": "gaurav sharma",
"license": "ISC",
"bugs": {
"url": "https://github.com/App-Knit/{{app_name}}.git/issues"
},
"homepage": "https://github.com/App-Knit/{{app_name}}.git#readme"
}