-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.57 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
{
"name": "react-plotter",
"version": "0.1.2",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"prepublish": "npm run clean && npm run build",
"precommit": "npm run clean:docs && npm run build:docs",
"build": "babel src -d dist --presets es2015,stage-0,react",
"build:docs": "NODE_ENV=production webpack --config docs/webpack.config.js -p --progress --profile --colors",
"clean": "rm -rf dist",
"clean:docs": "rm -rf docs/bundle.* docs/assets",
"test": "standard"
},
"author": "",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.4",
"eslint": "^3.19.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"progress-bar-webpack-plugin": "^1.10.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-hot-loader": "^3.0.0-beta.7",
"react-syntax-highlighter": "^5.6.2",
"semantic-ui-css": "^2.2.11",
"semantic-ui-react": "^0.71.3",
"standard": "^10.0.2",
"style-loader": "^0.18.2",
"webpack": "^3.2.0",
"webpack-dev-server": "^2.5.1"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"dist"
]
}
}