-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.45 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
{
"name": "express-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "babel-node ./server/index.js",
"dev": "nodemon --exec babel-node ./server/index.js",
"buildDb": "babel-node server/database/data/mockData.js",
"test": "echo \"Error: no test specified\" && exit 1",
"client:init": "cd client && npm i",
"client:dev": "cd client && npm start",
"client:build": "cd client && npm run build",
"heroku-postbuild": "npm run client:init && npm run client:build"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"classnames": "^2.2.6",
"concurrently": "^3.6.1",
"cookie": "^0.3.1",
"cookie-parser": "^1.4.3",
"env2": "^2.2.2",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"react-bootstrap-sweetalert": "^4.4.1",
"sequelize": "^4.38.0",
"serve-favicon": "^2.5.0",
"twilio": "^3.19.1"
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"nodemon": "^1.18.3",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"prettier": "^1.14.0"
}
}