-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "esquisse-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest --testMatch '**/tests/**/*.[jt]s?(x)'",
"test:e2e": "jest --testMatch '**/e2e/**/*.[jt]s?(x)'",
"start": "node server.js",
"start-server": "node server.js",
"start-dev": "node -r dotenv/config ./node_modules/.bin/nodemon server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"apollo-datasource": "^0.7.0",
"apollo-datasource-rest": "^0.8.0",
"apollo-server-express": "^2.11.0",
"bcrypt": "^4.0.1",
"cors": "^2.8.5",
"debug": "^4.1.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"graphql": "^14.6.0",
"graphql-passport": "^0.6.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongoose": "^5.9.5",
"mongoose-queue": "^0.3.3",
"node-cron": "^2.0.3",
"nodemon": "^2.0.2",
"passport": "^0.4.1"
},
"devDependencies": {
"apollo-server-testing": "^2.12.0",
"dotenv": "^8.2.0",
"jest": "^25.3.0",
"supertest": "^4.0.2",
"ws": "^7.2.3"
}
}