-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
84 lines (84 loc) · 2.76 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
77
78
79
80
81
82
83
84
{
"name": "omni",
"version": "0.3.0",
"description": "Synthesizer with musical scales using multi-touch & keyboard",
"main": "dist/app.js",
"author": "Luke Phillips",
"homepage": "http://femurdesign.com/",
"repository": {
"type": "git",
"url": "https://github.com/lukephills/omni"
},
"bugs": {
"url": "https://github.com/lukephills/omni/issues"
},
"scripts": {
"build": "rm -f dist/bundle-* && webpack --progress --colors && npm run copyAssets && npm run copyFavicons && npm run copyOgImage && npm run zip",
"zip": "zip -r bundle.zip dist/*",
"copyFavicons": "cp -a src/favicons dist",
"copyOgImage": "cp thumbnail.png dist/thumbnail.png",
"copyAssets": "cp src/assets/teufelsberg01.mp3 dist/assets/teufelsberg01.mp3",
"start": "webpack-dev-server --debug --devtool cheap-module-source-map --output-pathinfo --history-api-fallback --hot --inline --progress --colors --port 3000",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/classnames": "2.2.3",
"@types/history": "4.6.2",
"@types/node": "^4.0.22-alpha",
"@types/react": "^16.0.25",
"@types/react-dom": "16.0.3",
"@types/react-router": "4.0.18",
"@types/redux-actions": "2.2.2",
"@types/tapable": "^0.2.5",
"@types/webpack": "3.8.1",
"@types/webpack-env": "1.13.2",
"awesome-typescript-loader": "^3.4.0",
"css-loader": "^0.28.7",
"es6-promise": "^3.2.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"glob": "^7.0.5",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.7.2",
"postcss": "^6.0.14",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-reporter": "^5.0.0",
"postcss-url": "^7.2.1",
"react-hot-loader": "^3.1.3",
"redux-devtools-extension": "^2.13.2",
"sass-loader": "6.0.6",
"source-map-loader": "^0.1.5",
"source-map-support": "^0.4.0",
"style-loader": "^0.19.0",
"svg-url-loader": "^1.1.0",
"ts-node": "^0.9.3",
"tslint": "3.12.1",
"tslint-loader": "^2.1.5",
"typescript": "^2.6.1",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4",
"worker-loader": "^0.7.0"
},
"dependencies": {
"audio-buffer-utils": "^2.0.1",
"classnames": "^2.2.5",
"document-visibility": "^1.0.1",
"es6-map": "^0.1.4",
"inline-worker": "^1.1.0",
"merge-audio-buffers": "^1.0.0",
"normalize.css": "^3.0.3",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"svg-injector": "^1.1.3",
"worker-timer": "^1.0.0"
}
}