-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.16 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.16 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "dewey",
"version": "1.0.0",
"description": "🚧 Under Construction 🚧",
"main": "server.js",
"scripts": {
"deploy": "npm run build --prefix client && git add -A && git commit -m \"deployment ready\" && git push origin HEAD",
"start": "node dist/server.js",
"start:dev": "concurrently --kill-others \"npm run server\" \"npm run client\"",
"build": "babel src --out-dir dist && cd client && npm run build",
"server": "nodemon --exec babel-node src/server.js",
"client": "npm start --prefix client",
"client-install": "npm install --prefix client",
"install": "cd client && npm install",
"pretty-quick": "pretty-quick",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acd37/dewey.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/acd37/dewey/issues"
},
"homepage": "https://deweyreads.herokuapp.com/",
"dependencies": {
"@babel/runtime": "^7.9.2",
"@hapi/joi": "^17.1.1",
"@sendgrid/mail": "^7.1.1",
"axios": "^0.19.2",
"babel-loader": "^8.1.0",
"bcryptjs": "^2.4.3",
"cfonts": "^2.8.1",
"chalk": "^3.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.1.0",
"nodemon": "^2.0.2",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"quagga": "^0.12.1",
"query-string": "^6.12.1",
"react-stack-grid": "^0.7.1",
"sequelize": "^5.21.5"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"concurrently": "^5.1.0",
"husky": "^4.2.5",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}