-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "finanse-app",
"version": "0.0.1",
"description": "Finanse app",
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/node": "^8.10.66",
"concurrently": "^6.2.0",
"nodemon": "^2.0.7",
"ts-node": "3.3.0",
"typescript": "3.3.3333"
},
"dependencies": {
"apollo-server-express": "^2.24.0",
"argon2": "^0.27.2",
"connect-redis": "^5.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"graphql": "^15.5.0",
"graphql-middleware": "^6.0.10",
"pg": "^8.4.0",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.10",
"type-graphql": "^1.1.1",
"typeorm": "0.2.32"
},
"scripts": {
"watch-typescript": "tsc -w",
"watch-node": "nodemon build/index.js",
"watch-concurrently": "concurrently \"npm run watch-*\"",
"start": "node build/index.js"
}
}