-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "L-System",
"version": "1.0.0",
"description": "Implementation of a Lindenmayer-System in JavaScript ES6",
"author": "Christoph Michel",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"compression-webpack-plugin": "^0.3.1",
"css-loader": "^0.23.1",
"d3": "^4.2.1",
"material-ui": "^0.15.4",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"semistandard": "^8.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"start": "webpack-dev-server --display-error-details --progress --inline",
"local": "webpack --display-error-details --progress",
"analyze": "webpack --json | webpack-bundle-size-analyzer"
},
"semistandard": {
"ignore": [
"/src/dist/"
]
},
"optionalDependencies": {},
"dependencies": {
"webpack-bundle-size-analyzer": "^2.0.2"
}
}