-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.47 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
{
"name": "web-audio-visualizer",
"version": "1.0.6",
"description": "An audio visualizer",
"scripts": {
"start": "npm-run-all -p watch:serve watch:sass watch:rollup",
"build": "npm run clean && npm-run-all -p build:*",
"clean": "rimraf dist/*",
"watch:serve": "live-server --open=dist --watch=dist",
"build:sass": "sass --style=compressed src/styles/app.scss dist/styles/app.min.css",
"build:sass:dev": "sass src/styles/app.scss dist/styles/app.css",
"watch:sass": "sass src/styles/app.scss dist/styles/app.css --watch",
"build:rollup": "rollup -c",
"build:rollup:dev": "rollup -c rollup.config.dev.js",
"watch:rollup": "rollup -c rollup.config.dev.js --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/pepijnvandenhoven/web-audio-visualizer"
},
"author": "Pepijn van den Hoven",
"license": "MIT",
"homepage": "https://github.com/pepijnvandenhoven/web-audio-visualizer",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.2.5",
"@types/three": "^0.131.0",
"http-server": "^13.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.38.1",
"tslib": "^2.3.1",
"typescript": "^4.3.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"three": "^0.132.2"
}
}