-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.31 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-sample",
"version": "1.2.1",
"description": "GraphQL Sample",
"author": "Moustafa Refaat <[email protected]> (https://moustafarefaat.com)",
"license": "MIT",
"private": true,
"engines": {
"node": ">=10"
},
"scripts": {
"start": "npx nodemon --max-old-space-size=6144 --require ./src/index.js",
"db:migrate": "npx sequelize db:migrate",
"db:seed": "npx sequelize db:seed:all",
"lint": "npx semistandard --verbose | npx snazzy",
"lint:fix": "npx semistandard --verbose --fix | npx snazzy",
"test": "mocha src/test/*.test.js"
},
"dependencies": {
"apollo-server": "^2.11.0",
"apollo-server-express": "^2.11.0",
"bcryptjs": "2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^14.6.0",
"mysql2": "^2.1.0",
"sequelize": "^5.21.5"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.2",
"semistandard": "^14.2.0",
"sequelize-cli": "^5.5.1",
"snazzy": "^8.0.0",
"supertest": "^4.0.2"
},
"semistandard": {
"ignore": [
"database/",
"dist/",
"build/",
"docs/",
"deployment/",
"coverage/"
],
"env": [
"mocha",
"node",
"commonjs",
"es6"
]
}
}