-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
46 lines (46 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
{
"name": "QuickBill",
"version": "1.0.0",
"description": "Invoice Generator",
"main": "index.js",
"scripts": {
"start-dev": "webpack-dev-server --content-base . --history-api-fallback --hot --inline --progress --colors --port 8000",
"compile-sass": "sass --watch assets/styles:assets/css --style compressed",
"start": "NODE_ENV=development concurrently \"npm run start-dev\" \"npm run compile-sass\"",
"start-server": "node server.js",
"build": "webpack -p"
},
"repository": "[email protected]:PunitGr/MakeInvoice.git",
"author": "PunitGr <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"concurrently": "^3.4.0",
"flow-bin": "^0.47.0",
"react-hot-loader": "^1.3.1",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"express": "^4.15.3",
"jspdf": "^1.3.3",
"moment": "^2.18.1",
"react": "^15.5.4",
"react-addons-shallow-compare": "^15.5.2",
"react-dates": "^12.1.2",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"react-router-redux": "^4.0.8",
"react-select": "^1.0.0-rc.5",
"react-sortable-hoc": "^0.6.3",
"react-toggle": "^4.0.1",
"redux": "^3.7.0"
}
}