forked from webstar923/invoice-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.15 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "invoice",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test": "mocha",
"webpack": "webpack",
"start-prod": "update webpack start",
"dev": "npm-run-all --parallel watch:server watch:build",
"watch:build": "webpack --watch",
"watch:server": "nodemon --inspect \"./bin/www\""
},
"dependencies": {
"@types/react": "^16.0.0",
"@types/react-dom": "^16.0.0",
"@types/react-router": "^3.0.11",
"assert": "^1.4.1",
"awesome-typescript-loader": "^3.1.3",
"axios": "^0.16.2",
"babel-core": "^6.25.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.5.2",
"body-parser": "~1.17.1",
"bootstrap": "^4.0.0-alpha.6",
"clean-webpack-plugin": "^0.1.17",
"compression": "^1.7.1",
"compression-webpack-plugin": "^1.1.3",
"config": "^1.26.1",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.4.3",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"debug": "~2.6.3",
"ejs": "^2.5.7",
"express": "~4.15.2",
"express-session": "^1.15.3",
"file-loader": "^0.11.2",
"fs": "0.0.1-security",
"html-webpack-plugin": "^2.28.0",
"https": "^1.0.0",
"jquery": "^3.2.1",
"lodash": "^4.17.5",
"mocha": "^3.4.2",
"moment": "^2.22.1",
"mongodb": "^3.0.4",
"morgan": "~1.8.1",
"nodemailer": "^4.6.4",
"path": "^0.12.7",
"react": "^16.0.0",
"react-datepicker": "^1.4.1",
"react-dom": "^16.0.0",
"react-dropzone": "^4.2.9",
"react-fontawesome": "^1.6.1",
"react-icons": "^2.2.7",
"react-inline-editing": "^1.0.10",
"react-redux": "^5.0.2",
"react-router": "^3.0.5",
"reactstrap": "^5.0.0-beta.3",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"serve-favicon": "~2.4.2",
"style-loader": "^0.18.2",
"sweetalert2": "^7.18.0",
"typescript": "^2.3.4",
"url-loader": "^0.5.9",
"webpack": "^2.6.1",
"webpack-bundle-analyzer": "^2.9.2",
"webpack-dev-server": "^2.4.5"
},
"devDependencies": {
"jsdoc": "^3.5.3",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"nodemon": "^1.12.1",
"npm-run-all": "^4.0.2"
}
}