-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.1 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.1 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
95
96
97
98
{
"name": "notebook",
"version": "1.0.0",
"description": "Notebook web application",
"main": "index.js",
"scripts": {
"start": "node server.js",
"test:client": "jest",
"clean-dist": "rm -rf ./dist && mkdir -p ./dist",
"copy-to-dist": "cp -r ./public/* ./dist/",
"set-dist": "npm run clean-dist && npm run copy-to-dist",
"build:prod": "export NODE_ENV=production && npm run set-dist && webpack --mode production && node server.js",
"build:dev": "npm run set-dist && webpack-dev-server --config ./webpack.config.dev.js --mode development",
"heroku-prebuild": "npm run set-dist",
"heroku-postbuild": "webpack --mode production",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage2": "nyc -e .jsx report --reporter=text-lcov | coveralls"
},
"keywords": [
"developers",
"notebook"
],
"author": "johadi",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.1",
"classnames": "^2.2.5",
"compression": "^1.7.2",
"css-loader": "^0.28.11",
"dotenv": "^4.0.0",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"keymirror": "^0.1.1",
"lodash": "^4.17.5",
"mdbreact": "^4.4.0",
"node-sass": "^4.9.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-infinite-scroller": "^1.1.4",
"react-redux": "^5.0.7",
"react-redux-loading-bar": "^4.0.5",
"react-redux-sweetalert": "^1.0.1",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-sidebar": "^2.3.2",
"react-spinkit": "^3.0.0",
"react-toastify": "^4.0.2",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"resolve-url-loader": "^2.3.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.1",
"serve-favicon": "^2.5.0",
"style-loader": "^0.19.1",
"sweetalert": "^1.1.3",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2",
"winston": "^2.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^23.0.0-alpha.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"istanbul": "^0.4.5",
"jest": "^23.0.0-alpha.0",
"mocha": "^5.0.4",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.6.0",
"react-test-renderer": "^16.2.0",
"supertest": "^3.0.0"
}
}