-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1020 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
39
40
41
{
"name": "cook-smarter-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles",
"build": "rimraf build && tsc",
"start": "ts-node src/index.ts",
"serve": "nodemon --exec ts-node src/index.ts",
"postinstall": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.32",
"@types/passport": "^1.0.6",
"@types/passport-local": "^1.0.33",
"connect-flash": "^0.1.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"mysql": "^2.18.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"supertest": "^6.1.3",
"ts-node": "^9.1.1",
"typeorm": "^0.2.31",
"typescript": "^4.2.3"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.4"
}
}