-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.23 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
{
"name": "cosima-checks",
"version": "1.1.0",
"description": "CoSiMa Web Audio Applications",
"author": "Sébastien Robaszkiewicz, Norbert Schnell, Benjamin Matuszewski",
"license": "BSD-3-Clause",
"scripts": {
"minify": "terser public/client.js -o public/client.min.js",
"postinstall": "npm run transpile",
"serve": "http-server --ssl -p8000",
"transpile": "rollup -c",
"watch": "concurrently \"npm run serve\" \"rollup -c --watch.chokidar\""
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"rollup-plugin-node-globals": "^1.4.0",
"source-map-support": "^0.5.12",
"waves-audio": "^0.5.2",
"waves-loaders": "^0.1.5",
"motion-input": "^1.0.7",
"mobile-detect": "^1.3.5"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"chokidar": "^3.0.0",
"chokidar-cli-infanticide": "^1.3.1",
"concurrently": "^4.1.0",
"rollup": "^1.12.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.0.0",
"terser": "^4.0.0"
}
}