-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.63 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "survey-form-apis",
"version": "1.0.0",
"description": "A simple server that connects survey-form-ui and mongodb",
"main": "src/bin/server.js",
"scripts": {
"build": "nps build",
"dev": "nps dev",
"dev:debug": "nps dev.debug",
"doc": "nps doc",
"doc:deploy": "nps doc.deploy",
"heroku:deploy": "nps heroku.deploy",
"lint": "nps lint",
"lint:fix": "nps lint.fix",
"prettier": "prettier --write '{src,__{tests,mocks}__}/**/*.js'",
"start": "nps",
"test": "nps test",
"flamegraph:serve": "nps dev.flamegraph",
"coverage:report": "coveralls < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shrinathprabhu/survey-form-backend.git"
},
"author": "Shrinath Prabhu",
"license": "MIT",
"bugs": {
"url": "https://github.com/shrinathprabhu/survey-form-backend/issues"
},
"homepage": "https://github.com/shrinathprabhu/survey-form-backend#readme",
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-object-assign": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/runtime": "^7.11.2",
"apidoc": "^0.25.0",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.1.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"faker": "^4.1.0",
"flamebearer": "^1.1.3",
"husky": "^4.3.0",
"jest": "^26.4.1",
"lint-staged": "^10.2.11",
"mockingoose": "^2.13.2",
"nodemon": "^2.0.4",
"nps": "^5.10.0",
"nps-utils": "^1.7.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"wait-on": "^5.2.0"
},
"dependencies": {
"@sentry/node": "^5.25.0",
"@sentry/tracing": "^5.25.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"compression": "^1.7.4",
"connect-rid": "0.0.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-partial-response": "^1.0.2",
"express-uncapitalize": "^1.0.0",
"express-validation": "^3.0.5",
"helmet": "^4.1.0",
"method-override": "^3.0.0",
"mongoose": "^5.10.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"needle": "^2.5.2",
"pm2": "^4.4.1",
"pretty-error": "^2.1.1",
"puppeteer": "^5.3.1",
"sriracha": "^1.0.0",
"useragent": "^2.3.0",
"uuid": "^8.3.0",
"vhost": "^3.0.2"
}
}