-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 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
{
"name": "visualalgorithms",
"version": "1.0.0",
"private": true,
"description": "A webpage to help with visualizations of common data structures and algorithms",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "",
"start": "webpack-dev-server --config ./webpack.config.babel.js --mode development --open --hot",
"startfire": "npm run build && firebase serve --only functions,hosting",
"build": "webpack --mode production",
"deploy": "npm run build && firebase deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VisualAlgorithms/VisualAlgorithms.git"
},
"author": "Matthew Watts / Zachary Blasczyk",
"license": "MIT",
"bugs": {
"url": "https://github.com/VisualAlgorithms/VisualAlgorithms/issues"
},
"homepage": "https://visualalgorithms.tech",
"dependencies": {
"axios": "^0.18.0",
"react": "^16.3.1",
"react-dom": "^16.2.0",
"react-p5-wrapper": "0.0.4",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"html-webpack-plugin": "^3.1.0",
"mocha": "^5.0.5",
"style-loader": "^0.20.3",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1"
}
}