-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.7 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
{
"name": "node-recorder",
"version": "3.0.1",
"repository": "[email protected]:ericclemmons/node-recorder.git",
"author": "Eric Clemmons <[email protected]>",
"license": "MIT",
"files": [
"dist",
"jest-preset.js"
],
"main": "./dist",
"devDependencies": {
"@types/cosmiconfig": "^5.0.3",
"@types/debug": "^4.1.4",
"@types/express-graphql": "^0.6.2",
"@types/express-session": "^1.15.12",
"@types/globby": "^9.1.0",
"@types/graphql": "^14.0.7",
"@types/jest": "^24.0.6",
"@types/lodash": "^4.14.121",
"@types/mkdirp": "^0.5.2",
"@types/nock": "^9.3.1",
"@types/node-fetch": "^2.1.6",
"@types/supertest": "^2.0.7",
"@types/url-parse": "^1.4.3",
"express-graphql": "^0.7.1",
"express-session": "^1.15.6",
"jest": "^24.7.1",
"lodash": "^4.17.13",
"node-fetch": "^2.3.0",
"np": "*",
"polydev": "^1.7.1",
"prettier": "^1.17.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.3",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.0.2",
"tsconfig-paths": "^3.8.0",
"typegql": "^0.6.1",
"typescript": "^3.4.3"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --build tsconfig.build.json",
"dev": "cd example && polydev -r ts-node/register -r tsconfig-paths/register",
"prerelease": "yarn build",
"release": "np",
"pretest": "yarn build",
"test": "jest"
},
"dependencies": {
"@sindresorhus/fnv1a": "^1.2.0",
"ansi-escapes": "^4.1.0",
"chalk": "^2.4.2",
"cosmiconfig": "^5.2.0",
"debug": "^4.1.1",
"globby": "^9.2.0",
"mkdirp": "^0.5.1",
"nock": "^10.0.6",
"terminal-link": "^1.3.0",
"url-parse": "^1.4.6"
}
}