-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.01 KB
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
65
{
"name": "take2-template-graph-multi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node index.ts",
"nock": "NOCK_RECORD=true ts-node index.ts",
"prod": "ts-node index.ts",
"start": "echo 'Please run dev or prod'",
"test-all": "NODE_ENV=test npm run test && npm run test-migrations",
"test-graph": "NODE_ENV=test mocha --trace-warnings 'apps/**/test/graph/**/*.spec.ts'",
"test-migrations": "NODE_ENV=test mocha --trace-warnings 'apps/**/test/migrations/**/*.spec.ts'",
"test": "NODE_ENV=test TS_NODE_FILES=true mocha --trace-warnings 'test/**/*.spec.ts' 'apps/**/test/{,!(migrations)/**/}*.spec.ts'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-uuid": "^1.0.6",
"eslint": "^5.12.1",
"mocha": "^5.2.0",
"nock": "^10.0.2",
"sinon": "^7.1.1",
"sinon-chai": "^3.3.0",
"supertest": "^3.3.0"
},
"dependencies": {
"@babel/core": "^7.1.6",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"@types/dotenv-safe": "^5.0.3",
"@types/express-winston": "^3.0.0",
"@types/graphql": "^14.0.5",
"apollo-server-express": "^2.2.4",
"dotenv-safe": "^6.1.0",
"express": "^4.16.4",
"express-winston": "^3.0.1",
"factory-girl": "^5.0.4",
"faker": "^4.1.0",
"graphql": "^14.0.2",
"graphql-bigint": "^1.0.0",
"graphql-playground-middleware-express": "^1.7.11",
"graphql-relay": "^0.5.5",
"graphql-sequelize": "^9.2.0",
"graphql-type-json": "^0.2.1",
"joi": "^14.3.0",
"lodash": "^4.17.11",
"pg": "^7.6.1",
"pg-hstore": "^2.3.2",
"sequelize": "^4.41.2",
"ts-node": "^8.0.2",
"typescript": "^3.3.1",
"umzug": "^2.2.0",
"winston": "^3.1.0"
}
}