-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "server",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/dotenv": "^6.1.1",
"@types/jsonwebtoken": "^8.3.2",
"@types/lodash": "^4.14.122",
"@types/node": "^10.12.18",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"dependencies": {
"apollo-server": "^2.1.0",
"bcryptjs": "^2.4.3",
"core-js": "3.0.0-beta.11",
"dotenv": "^7.0.0",
"fcm-node": "^1.5.1",
"graphql": "^14.0.2",
"graphql-import": "^0.7.1",
"jsonwebtoken": "^8.5.1",
"pg": "^7.3.0",
"reflect-metadata": "^0.1.10",
"typeorm": "^0.2.8"
},
"scripts": {
"start": "NODE_ENV=development nodemon --exec ts-node src/index.ts",
"build": "tsc -b"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}