-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "server",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"main": "tsc && node dist/index.js",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "nodemon dist/index.js",
"start2": "ts-node src/index.ts",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js --config src/ormConfig.ts",
"migration:generate": "tsc && npm run typeorm migration:generate -- -n",
"migration:run": "tsc && npm run typeorm migration:run"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/validator": "^13.7.1",
"apollo-server-express": "^2.23.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"class-validator": "^0.13.2",
"dotenv": "^10.0.0",
"expo-server-sdk": "^3.6.0",
"express": "^4.17.1",
"graphql": "^15.5.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^9.1.1",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.32",
"typescript": "^4.2.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^15.0.1"
},
"engines": {
"node": "14.18.1"
}
}