-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.62 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
{
"name": "subgrapher",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"lint": "eslint src/ --ext .ts",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"build": "tsc",
"dev": "nodemon src/index.ts",
"start": "node dist/src/index.js",
"test": "PORT=3003 start-server-and-test 'yarn dev' 3003 'yarn jest --runInBand test/e2e/' && yarn test:unit",
"test:unit": "jest --runInBand --collectCoverage=false test/unit",
"test:unit:watch": "jest --watch --runInBand --collectCoverage=false test/unit",
"test:watch": "PORT=3003 start-server-and-test 'yarn dev' 3003 'yarn jest --watch --runInBand --collectCoverage=false test/e2e/'"
},
"eslintConfig": {
"extends": "@snapshot-labs"
},
"prettier": "@snapshot-labs/prettier-config",
"dependencies": {
"@aws-sdk/client-s3": "^3.75.0",
"@snapshot-labs/snapshot-metrics": "^1.4.1",
"@snapshot-labs/snapshot-sentry": "^1.5.5",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"graphql": "^16.6.0",
"node-fetch": "^1.7.0",
"ts-node": "^10.8.1",
"typescript": "^4.9.3"
},
"devDependencies": {
"@snapshot-labs/eslint-config": "^0.1.0-beta.17",
"@snapshot-labs/prettier-config": "^0.1.0-beta.7",
"@types/express": "^4.17.11",
"@types/jest": "^29.5.5",
"@types/node": "^18.11.6",
"eslint": "^8.28.0",
"jest": "^29.7.0",
"jest-environment-node-single-context": "^29.1.0",
"nodemon": "^2.0.19",
"prettier": "^3.0.3",
"start-server-and-test": "^2.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1"
},
"engines": {
"node": "^18.0.0"
}
}