-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.53 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
79
80
81
82
83
84
85
{
"name": "algo",
"version": "1.0.0",
"description": "Algorithms and Data Structures visulation",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "gulp",
"build": "NODE_ENV=production gulp build",
"dist": "NODE_ENV=production gulp build && gulp dist",
"gh-pages": "npm run dist && sleep 3 && git add dist/ && git commit -m \"build dist\" && git push origin `git subtree split --prefix dist HEAD`:gh-pages --force"
},
"author": "unbug",
"license": "MIT",
"engines": {
"node": ">=6.10.0 <=10.15.2",
"npm": ">=3.10.10 <=6.4.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"ansi-colors": "^2.0.5",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.5",
"browser-sync": "^2.26.4",
"css-loader": "^1.0.1",
"cssnano": "^4.1.10",
"del": "^3.0.0",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"fancy-log": "^1.3.3",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^5.0.0",
"gulp-babel-minify": "^0.5.0",
"gulp-cachebust": "0.0.10",
"gulp-cached": "^1.1.1",
"gulp-concat": "^2.6.1",
"gulp-csso": "^3.0.1",
"gulp-eslint": "^5.0.0",
"gulp-help": "^1.6.1",
"gulp-htmlmin": "^4.0.0",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^4.1.0",
"gulp-load-plugins": "^1.5.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.0.2",
"gulp-sass-lint": "^1.4.0",
"gulp-size": "^3.0.0",
"gulp-watch": "^5.0.1",
"imagemin-pngquant": "^6.0.1",
"minimist": "^1.2.0",
"node-sass": "^4.11.0",
"plugin-error": "^1.0.1",
"require-dir": "^1.2.0",
"run-sequence": "^2.2.1",
"sass-loader": "^7.1.0",
"serve-index": "^1.9.1",
"through2": "^3.0.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@babel/polyfill": "^7.4.3",
"animate.css": "^3.7.0",
"d3": "^5.9.2",
"events": "^3.0.0",
"file-saver": "^2.0.1",
"lodash": "^4.17.11",
"nprogress": "^0.2.0",
"platform": "^1.3.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^4.3.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.85.0",
"smoothscroll-polyfill": "^0.4.4",
"svgsaver": "^0.9.0"
}
}