-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1021 Bytes
/
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
{
"name": "percept-backend",
"version": "1.0.0",
"description": "backend for perception gathering",
"main": "server.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest --forceExit --testTimeout=10000",
"start": "cross-env NODE_ENV=production node server.js",
"dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrd/percept-backend.git"
},
"author": "Matthew Danish",
"license": "ISC",
"bugs": {
"url": "https://github.com/mrd/percept-backend/issues"
},
"homepage": "https://github.com/mrd/percept-backend#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"express-promise-router": "^4.1.1",
"express-validator": "^6.15.0",
"glob": "^9.3.0",
"http": "^0.0.1-security",
"isomorphic-dompurify": "^1.2.0",
"pg": "^8.10.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^29.5.0",
"knex": "^2.4.2",
"nodemon": "^2.0.21",
"supertest": "^6.3.3"
}
}