-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "employee-directory",
"version": "1.0.0",
"description": "Employee Directory System",
"main": "index.js",
"scripts": {
"start": "npm run build",
"build": "webpack -d && xcopy \"src/index.html\" \"dist/\" /F /Y && webpack-dev-server --content-base src/ --inline --hot --history-api-fallback",
"build:prod": "webpack -p && xcopy \"src/index.html\" \"dist/\" /F /Y"
},
"keywords": [
"ReactJS",
"NodeJS",
"Webpack",
"Babel",
"MySql",
"Express",
"Bootstrap"
],
"author": "Ralph Jbeily",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.1",
"bootstrap": "^3.3.7",
"express": "^4.15.4",
"mysql": "^2.14.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-fetch": "0.0.9",
"react-router": "^3.0.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.2"
}
}