-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.18 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
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "gulp-browserify-setup",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"webpack": "webpack --config config/webpack.prod.js",
"sass": "node-sass src/styles/index.scss build/index.css --output-style compressed",
"build": "npm run clean && npm run sass && npm run webpack",
"lint": "eslint src config",
"dev": " webpack-dashboard -- webpack-dev-server --config config/webpack.dev.js",
"test": "export NODE_ENV=test && jest",
"start": "serve -s build"
},
"engines": {
"node": ">=0.10.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"compression": "^1.7.4",
"css-loader": "^4.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-react": "^7.20.6",
"expect": "^26.4.2",
"express": "^4.17.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^6.1.0",
"gulp": "^4.0.2",
"gulp-cond": "^1.0.0",
"gulp-eslint": "^6.0.0",
"gulp-insert-lines": "0.0.4",
"gulp-mocha": "^7.0.2",
"gulp-nodemon": "^2.5.0",
"gulp-util": "^3.0.7",
"open": "7.2.1",
"resolve-url-loader": "^3.1.1",
"run-sequence": "^2.2.1",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-stream": "^6.1.0",
"yargs": "^16.0.3",
"clean-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"mini-css-extract-plugin": "^0.5.0",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@onlinejavaclass/marked": "0.0.4",
"bootstrap": "^4.5.2",
"clean-webpack-plugin": "^3.0.0",
"clipboard": "^2.0.6",
"copy-webpack-plugin": "^6.1.1",
"del": "^5.1.0",
"font-awesome": "^4.7.0",
"gulp-iconfont": "^10.0.3",
"gulp-sass": "^4.1.0",
"gulp-serve": "^1.4.0",
"history": "^5.0.0",
"html-loader": "^1.3.0",
"html-webpack-plugin": "^4.4.1",
"html-webpack-template": "^6.2.0",
"lunr": "^2.3.9",
"mini-css-extract-plugin": "^0.11.2",
"moment": "^2.28.0",
"node-bourbon": "^4.2.8",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-cookies": "^0.1.1",
"react-device-detect": "^1.13.1",
"react-dom": "^16.13.1",
"react-router": "^5.2.0",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.2.0",
"superagent": "^6.1.0",
"through2": "^4.0.2",
"typescript": "^4.0.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}