forked from algorithm-visualizer/algorithm-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.34 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "algorithm-visualizer",
"version": "2.0.0",
"description": "Algorithm Visualizer",
"scripts": {
"dev": "NODE_ENV=development ./bin/www",
"start": "NODE_ENV=production ./bin/www",
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "NODE_ENV=production node ./node_modules/webpack/bin/webpack --bail --progress --config webpack.frontend.config.js",
"build:backend": "NODE_ENV=production node ./node_modules/webpack/bin/webpack --bail --progress --config webpack.backend.config.js",
"lint": "./node_modules/.bin/eslint --fix src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/algorithm-visualizer/algorithm-visualizer.git"
},
"keywords": [
"algorithm",
"visualizer"
],
"author": {
"name": "Jinseo Jason Park",
"email": "[email protected]",
"url": "https://jasonpark.me/"
},
"license": "MIT",
"devDependencies": {
"@fortawesome/fontawesome": "^1.1.5",
"@fortawesome/fontawesome-free-brands": "^5.0.9",
"@fortawesome/fontawesome-free-solid": "^5.0.9",
"@fortawesome/fontawesome-svg-core": "^1.2.0",
"@fortawesome/react-fontawesome": "0.1.0",
"autoprefixer": "latest",
"axios": "latest",
"axios-progress-bar": "^1.1.8",
"babel-core": "^6.18.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-3": "^6.24.1",
"bluebird": "latest",
"body-parser": "^1.18.2",
"brace": "latest",
"chart.js": "^2.7.2",
"clean-webpack-plugin": "^0.1.16",
"compression": "latest",
"connect-history-api-fallback": "^1.3.0",
"cookie-parser": "^1.4.3",
"copy-webpack-plugin": "^4.0.1",
"css-hot-loader": "^1.3.9",
"css-loader": "^1.0.0",
"eslint": "^5.1.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"express": "^4.15.4",
"fs-extra": "^6.0.1",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.18.0",
"imagemin-webpack-plugin": "^2.1.1",
"js-cookie": "^2.2.0",
"mini-css-extract-plugin": "^0.4.0",
"morgan": "^1.9.0",
"node-sass": "^4.5.3",
"postcss-flexboxfixer": "0.0.5",
"postcss-loader": "^2.0.6",
"raw-loader": "^0.5.1",
"react": "^16.3.1",
"react-ace": "^6.1.4",
"react-chartjs-2": "^2.7.0",
"react-dom": "^16.3.1",
"react-helmet": "^5.2.0",
"react-input-autosize": "^2.2.1",
"react-input-range": "^1.3.0",
"react-markdown": "^3.3.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"react-toastify": "^4.1.0",
"redbox-react": "^1.5.0",
"redux": "^4.0.0",
"redux-actions": "^2.2.1",
"sass-loader": "^7.0.3",
"screenfull": "^3.3.2",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"uuid": "^3.2.1",
"webpack": "^4.5.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^3.0.8",
"webpack-dev-middleware": "^3.1.0",
"webpack-hot-middleware": "^2.19.1",
"webpack-node-externals": "^1.6.0"
}
}