-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.37 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
{
"name": "nycp-backend",
"version": "0.0.0",
"description": "Back side for Penitentiary application",
"main": "server.js",
"scripts": {
"test": "jest build",
"start": "node build/server",
"tsc": "tsc -w",
"nodemon": "nodemon build/server",
"dev": "concurrently \"npm run tsc -w\" \"npm run nodemon\""
},
"jest": {
"verbose": true,
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Araken64/nycp-backend.git"
},
"keywords": [
"node",
"backend",
"express",
"uppa"
],
"author": "arousic & elethuillier",
"license": "ISC",
"bugs": {
"url": "https://github.com/Araken64/nycp-backend/issues"
},
"homepage": "https://github.com/Araken64/nycp-backend#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"mongoose": "^5.10.14"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/jest": "^26.0.15",
"@types/mongoose": "^5.10.0",
"@types/node": "^14.14.7",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"concurrently": "^5.3.0",
"eslint": "^7.13.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"supertest": "^6.0.1",
"typescript": "^4.0.5"
}
}