-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1012 Bytes
/
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
{
"name": "graphql-template",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node bin/dev",
"prod": "node bin/prod",
"preprod": "npm run build",
"dev": "nodemon bin/dev",
"build": "babel src -s -d dist",
"prebuild": "npm run eslint && npm run test",
"test": "mocha 'src/**/*.spec.js' --require @babel/register",
"eslint": "eslint src"
},
"pre-commit": "eslint",
"author": "Hoang Hung",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"faker": "^4.1.0",
"mocha": "^7.0.1",
"nodemon": "^2.0.2",
"pre-commit": "^1.2.2"
},
"dependencies": {
"@babel/polyfill": "^7.8.3",
"apollo-server": "^2.9.16",
"bcrypt": "^3.0.7",
"graphql": "^14.6.0",
"mongoose": "^5.8.11"
}
}