-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.91 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.91 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "onenapp",
"version": "0.0.0",
"description": "CMS",
"author": "Melquisedeque Pereira",
"homepage": "www.melqui.pt",
"copyright": "Copyright 2018 Melquisedeque Pereira",
"private": true,
"devDependencies": {
"@coreui/coreui": "^2.0.2",
"@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.2.0",
"@coreui/icons": "0.2.0",
"@coreui/react": "^2.0.4",
"babel-cli": "^6.26.0",
"babel-core": "6.26.0",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"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",
"chart.js": "^2.7.2",
"copy-webpack-plugin": "4.3.1",
"core-js": "^2.5.7",
"css-hot-loader": "1.3.5",
"css-loader": "0.28.8",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.6",
"html-loader": "0.5.4",
"html-webpack-plugin": "2.30.1",
"jquery": "^1.9.1",
"json-loader": "^0.5.7",
"nib": "^1.1.2",
"node-sass": "^4.9.2",
"node-sass-chokidar": "^1.3.0",
"nodemon": "^1.14.11",
"npm-run-all": "^4.1.3",
"parallelshell": "^3.0.2",
"pug": "^2.0.0-rc.4",
"react-loadable": "^5.4.0",
"react-router-config": "^1.0.0-beta.4",
"react-scripts": "^1.1.4",
"react-test-renderer": "^16.4.1",
"rimraf": "2.6.2",
"sass-loader": "6.0.6",
"source-list-map": "2.0.0",
"style-loader": "0.19.1",
"stylus": "^0.54.5",
"uglify-js": "3.3.7",
"url-loader": "0.6.2",
"webpack": "3.10.0",
"webpack-dev-server": "2.9.7",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"body-parser": "^1.18.2",
"bootstrap": "^4.1.1",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"flag-icon-css": "^3.0.0",
"font-awesome": "4.7.0",
"history": "4.7.2",
"lodash": "^4.17.5",
"morgan": "^1.9.0",
"react": "^16.2.0",
"react-chartjs-2": "^2.7.2",
"react-dom": "^16.4.1",
"react-router-dom": "^4.3.1",
"react-transition-group": "2.2.1",
"reactstrap": "^6.1.0",
"serve-favicon": "^2.4.5",
"simple-line-icons": "2.4.1"
},
"scripts": {
"dev": "webpack -d --progress --watch --profile --json > compilation-stats.json --env.dev",
"start": "webpack-dev-server --progress --color --inline --env.dev",
"build:old": "webpack -p --progress --env.prod",
"clean": "rimraf ./build",
"build": "babel . -d build --ignore node_modules,build",
"build:watch": "babel . -d build --watch --ignore node_modules,build",
"build:client": "webpack --config webpack.config.js --display-error-details",
"build:watch:client": "webpack --config webpack.config.js --watch",
"build:prod": "npm run clean && npm run build && npm run build:client",
"start:dev": "parallelshell \"npm run build:watch\" \"npm run build:watch:client\" \"nodemon build/index.js\"",
"reset": "npm run build:prod && npm run start:dev"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.6.0"
}
}