-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.68 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
{
"name": "surveyor",
"version": "0.0.1",
"description": "A tool for data driven surveys",
"main": "built/app.js",
"scripts": {
"start": "node built/server.js",
"compile": "tsc -p .",
"test": "tsc -w",
"dev": "nodemon built/server.js",
"start_mongo": "sudo service mongodb start",
"stop_mongo": "sudo service mongodb stop",
"jest": "npx jest"
},
"dependencies": {
"@types/csurf": "^1.11.2",
"@types/supertest": "^2.0.11",
"axios": "^0.24.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"csv-parse": "^4.15.4",
"csv-stringify": "^5.6.2",
"dotenv": "^10.0.0",
"express": "^4",
"express-session": "^1.17.2",
"googleapis": "^74.2.0",
"js-base64": "^3.7.2",
"jsonwebtoken": "^8.5.1",
"jstransformer-markdown-it": "^2.1.0",
"marked": "^4.0.10",
"mongodb": "^4.1.2",
"mongodb-memory-server": "^8.4.0",
"prettier": "^2.3.0",
"pug": "^3.0.2",
"readline": "^1.3.0",
"request": "^2.88.2",
"supertest": "^6.2.2",
"svg-captcha": "^1.4.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "4.17.6",
"@types/express-session": "^1.17.4",
"@types/jest": "^27.4.1",
"@types/js-base64": "^3.3.1",
"@types/marked": "^2.0.4",
"@types/node": "^14.18.12",
"@types/request": "^2.48.6",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.3.5"
},
"repository": {
"url": "https://github.com/Watts-Lab/surveyor"
},
"license": "MIT",
"keywords": [
"node",
"data-driven-survey",
"express"
]
}