-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.4 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": "stepsequencer",
"version": "1.0.0",
"description": "Step Sequencer",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"servedev": "webpack-dev-server",
"build": "NODE_ENV=production npm run clean && webpack",
"deployghpages": "npm run build && git subtree push --prefix dist origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kirie/StepSequencer.git"
},
"author": "kirie",
"license": "ISC",
"bugs": {
"url": "https://github.com/kirie/StepSequencer/issues"
},
"homepage": "https://github.com/kirie/StepSequencer#readme",
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2",
"tone": "^0.9.0"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-env": "^1.1.8",
"babel-preset-react": "^6.16.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.26.0",
"image-webpack-loader": "^3.1.0",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.0-rc.0",
"webpack-dev-server": "^1.16.2"
}
}