-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
55
56
57
{
"name": "at-gql-server",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/rodzy/Autotheater-gql-server.git",
"author": "rodzy <[email protected]>",
"license": "MIT",
"scripts": {
"test": "npm run db:test && jest",
"watch": "tsc -w",
"dev": "nodemon dist/src/index.js",
"dev:ts": "nodemon --exec src/index.ts",
"start": "node dist/src/index.js",
"start:ts": "ts-node src/index.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"db:populate": "ts-node src/seed.ts",
"db:test": "ts-node src/testUtils/setup.ts"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.11.10",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.11.0",
"jest": "^26.6.0",
"nodemon": "^2.0.6",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"apollo-server-express": "^2.18.2",
"argon2": "^0.27.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.3.0",
"pg": "^8.4.1",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.0",
"typeorm": "^0.2.28"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}