-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 936 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 936 Bytes
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
{
"name": "07-node",
"private": true,
"scripts": {
"dev": "node-dev --require dotenv/config index.ts",
"dump-graphql-schema": "node-dev --require dotenv/config schema/dump.ts",
"populate-database": "node-dev --require dotenv/config database/populate.ts",
"test": "jest --setupFiles dotenv/config"
},
"dependencies": {
"@supabase/supabase-js": "^1.22.6",
"@types/express-session": "^1.17.4",
"dotenv": "^10.0.0",
"express": "^4.17.3",
"express-graphql": "^0.12.0",
"express-session": "^1.17.2",
"graphql": "^15.5.0",
"graphql-relay": "^0.9.0",
"typescript": "^4.4.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/graphql-relay": "^0.7.0",
"@types/jest": "^27.0.1",
"jest": "^27.1.1",
"node-dev": "^7.0.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1"
}
}