-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 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
52
53
54
55
56
{
"name": "graphql-boilerplate-typescript",
"version": "0.0.1",
"description": "",
"main": "main.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"dev": "nodemon --watch 'src/' --exec 'ts-node src/main.ts' -e ts",
"pretest": "tsc",
"test": "NODE_ENV=test MOCKS=true mocha 'dist/tests/index.js' 'dist/tests/queries/**/*.js' 'dist/tests/mutations/**/*.js' 'dist/tests/resolvers/**/*.js' --exit -t 30000"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.7",
"chai": "^4.2.0",
"dirty-chai": "^2.0.1",
"lodash": "^4.17.21",
"mocha": "^10.0.0",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "4.16.1",
"@types/graphql": "^14.2.1",
"@types/jest": "^24.0.15",
"@types/node": "11.13.4",
"@types/supertest": "2.0.7",
"acorn": "^6.4.1",
"ajv": "^8.11.0",
"apollo-datasource-rest": "^0.3.2",
"apollo-server-express": "^3.8.1",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-session": "^1.15.6",
"glob": "^7.1.4",
"graphql": "^14.3.1",
"graphql-subscriptions": "^1.1.0",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.16",
"path": "^0.12.7",
"prettier": "1.17.0",
"pubsub": "^3.2.1",
"sinon": "^7.3.2",
"ts-jest": "^28.0.3",
"ts-node": "8.1.0",
"tsconfig-paths": "3.8.0",
"tslint": "5.16.0",
"typescript": "^3.5.2"
}
}