-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.49 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
50
51
{
"name": "job-search",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:3030/",
"dependencies": {
"axios": "^0.16.2",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express-session": "^1.15.3",
"fuse.js": "^3.0.5",
"isomorphic-fetch": "^2.2.1",
"material-design-icons": "^3.0.1",
"mongoose": "^4.10.8",
"morgan": "^1.8.2",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"radium": "^0.19.1",
"radium-normalize": "^2.0.5",
"react": "^15.6.1",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-transition-group": "^1.2.0",
"reactcss": "^1.2.2",
"redux": "^3.7.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"sass": "^0.5.0"
},
"devDependencies": {
"concurrently": "^3.5.0",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.0.2",
"react-scripts": "0.9.5"
},
"scripts": {
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"build-css": "node-sass-chokidar src/Styles/SCSS -o src/Styles/CSS",
"watch-css": "npm run build-css && node-sass-chokidar src/Styles/SCSS -o src/Styles/CSS --watch --recursive"
}
}