-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "jobsboard",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"client": " webpack --watch",
"server": "nodemon --exec babel-node src/server/index.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"apollo-boost": "^0.1.12",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"mssql": "^4.1.0",
"react": "^16.4.0",
"react-apollo": "^2.1.9",
"react-dom": "^16.4.0",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"concurrently": "^3.6.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.2",
"nodemon": "^1.17.5",
"sass-loader": "^7.1.0",
"style-loader": "^0.21.0",
"webpack": "^4.9.1",
"webpack-cli": "^2.1.4"
}
}