-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
76 lines (76 loc) · 2.25 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
{
"name": "drum-vae-client-template",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --config ./webpack.dev.config.js",
"prebuild": "yarn run clean",
"clean": "rimraf public",
"build": "webpack -d --config ./webpack.prod.config.js --colors",
"start": "serve public/",
"lint": "eslint ./src",
"predeploy": "npm run build",
"deploy": "gh-pages -d public"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@magenta/music": "^1.4.0",
"glsl-noise": "^0.0.0",
"glslify-import-loader": "^0.1.1",
"gsap": "^1.19.1",
"noisejs": "^2.1.0",
"normalize-css": "^2.3.1",
"rc-slider": "^8.6.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-tap-event-plugin": "^3.0.2",
"startaudiocontext": "^1.2.1",
"three": "^0.88.0",
"tonal-chord": "^2.1.0",
"tone": "^0.11.11",
"uuid": "^3.2.1"
},
"devDependencies": {
"autoprefixer": "^7.2.4",
"babel-core": "^6.24.1",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-babili": "^0.1.4",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"browser-sync": "^2.18.8",
"browser-sync-webpack-plugin": "^1.1.4",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.7",
"eslint": "^4.13.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "2.1.2",
"file-loader": "^1.1.6",
"gh-pages": "^1.1.0",
"glslify-loader": "^1.0.2",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.7.2",
"postcss-loader": "^2.0.10",
"prettier": "^1.9.1",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"three-obj-loader": "^1.1.3",
"uglifyjs-webpack-plugin": "^1.1.4",
"url-loader": "^0.6.2",
"webpack": "^2.5.1",
"webpack-dashboard": "^1.0.2",
"webpack-dev-server": "^2.4.5",
"webpack-merge": "^4.1.1"
}
}