-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
30 lines (30 loc) · 914 Bytes
/
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
{
"name": "audio-visualizer",
"version": "1.0.0",
"description": "A JS audio visualizer",
"main": "index.js",
"scripts": {
"start": "parcel src/index.html --port 8080",
"prebuild": "rimraf dist/*",
"build": "parcel build src/index.html --public-url ./",
"setupDist": "git worktree add dist gh-pages",
"deploy": "cd dist && git add --all && git reset -- stats && git commit -m \"new version\" && git push origin gh-pages"
},
"author": "Teoxoy",
"license": "MIT",
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Edge versions"
],
"dependencies": {
"pixi.js": "^5.1.5"
},
"devDependencies": {
"autoprefixer": "^9.6.4",
"parcel-bundler": "^1.12.4",
"rimraf": "^3.0.0",
"stylus": "^0.54.7"
}
}