-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
40 lines (40 loc) · 1 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
{
"name": "spot-graphql-server",
"version": "0.3.0",
"private": true,
"type": "module",
"engines": {
"yarn": "1",
"npm": "10",
"node": ">=16.x"
},
"scripts": {
"test": "npm run simpletest",
"build": "sass public/stylesheets/style.sass:public/stylesheets/style.css",
"simpletest": "node ./test/schemaTest.mjs",
"printSchema": "node ./bin/printSchema.mjs",
"watch": "npm run build ; nodemon serverInit.mjs",
"start": "npm run build ; node serverInit.mjs",
"prepare": "yarn run snyk-protect",
"snyk-protect": "snyk-protect"
},
"dependencies": {
"@graphql-tools/mock": "9.0.9",
"@snyk/protect": "1.1294.2",
"body-parser": "1.20.3",
"cookie-parser": "1.4.7",
"cors": "2.8.5",
"debug": "4.4.0",
"dotenv": "16.4.7",
"express": "4.21.2",
"express-graphql": "0.12.0",
"graphql": "16.9.0",
"morgan": "1.10.0",
"node-fetch": "3.3.2",
"sass": "1.82.0"
},
"devDependencies": {
"nodemon": "3.1.7"
},
"snyk": true
}