-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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
{
"private": true,
"type": "module",
"license": "MIT",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:course-development": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config=jest.course-development.config.cjs",
"build": "tsc --build",
"format": "lint-staged",
"format:all": "prettier . --write",
"prepare": "husky install"
},
"dependencies": {
"@sanjo/read-file": "^2.0.0",
"@xolvio/graphql-verification": "^1.0.1",
"apollo-server": "^3.6.4",
"graphql": "^16.3.0"
},
"devDependencies": {
"@jest/globals": "^27.5.1",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.26",
"glob": "^7.2.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-jest-resolver": "^2.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"lint-staged": {
"*.{ts,js,json,css,md}": "prettier --write"
}
}