-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.83 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "todolistapi",
"version": "1.0.0",
"description": "",
"main": "src/startup.ts",
"scripts": {
"start": "nodemon --inspect=0.0.0.0:9229 --ext 'ts,json' --watch 'src' ./node_modules/.bin/ts-node -r tsconfig-paths/register ./src/startup.ts",
"lint": "eslint src --ext .ts"
},
"author": "Domas Pozniakas",
"license": "ISC",
"dependencies": {
"apollo-server": "^2.19.2",
"apollo-server-express": "^2.19.2",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-http-context": "^1.2.4",
"graphql": "^15.5.0",
"inversify": "^5.0.5",
"inversify-express-utils": "^6.3.2",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.2.5",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.4.0",
"type-graphql": "^1.1.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.21",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"dotenv": "^8.2.0",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3"
},
"jest": {
"setupFiles": [
"dotenv/config"
],
"transform": {
".ts": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"moduleNameMapper": {
"#(.*)$": "<rootDir>/src/$1"
}
}
}