-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "help-desk",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --inline --content-base .",
"serve": "nodemon server/server.js",
"watch": "webpack -w ./src/index.js ./client/bundle.js",
"build": "webpack ./src/index.js ./client/bundle.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"html-webpack-plugin": "^2.28.0",
"http-server": "^0.9.0",
"jquery": "^3.1.1",
"nodemon": "^1.11.0",
"path": "^0.12.7",
"react-router": "^2.0.0",
"react-router-loader": "^0.5.4",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"bcrypt": "^1.0.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.16.0",
"express": "^4.14.1",
"morgan": "^1.8.0",
"pg": "^6.1.2",
"pg-hstore": "^2.3.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"sequelize": "^3.30.1"
}
}