-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "notewriter-api",
"version": "0.0.0",
"private": true,
"scripts": {
"clean": "rm -rf build",
"build": "npm run clean && mkdir build && babel ./ --ignore 'node_modules,build,.github,.nyc_output' -s -d build",
"start": "npm run build && node ./build/server.js",
"dev": "babel-watch server.js"
},
"dependencies": {
"@babel/core": "^7.7.7",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-watch": "^7.0.0",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "~4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.5.8",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.8.1",
"morgan": "^1.9.1"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.14.0",
"prettier": "^1.17.1",
"pretty-quick": "^1.11.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}