-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 967 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "music-box-fun",
"version": "1.0.0",
"description": "A web app for making music box songs",
"author": "Bryan Braun",
"repository": {
"type": "git",
"url": "git+https://github.com/bryanbraun/music-box-fun.git"
},
"scripts": {
"test": "cypress run",
"test:prod": "cypress run --config baseUrl=https://musicbox.fun",
"test:static": "cypress run --spec 'cypress/e2e/*[!.api].cy.js'",
"test:visual": "cypress open",
"build": "node build-modules.mjs",
"postinstall": "npm run build"
},
"devDependencies": {
"cypress": "^10.6.0",
"esinstall": "^1.1.7"
},
"dependencies": {
"anchor-js": "5.0.0",
"classnames": "2.2.6",
"json-url": "2.4.0",
"lory.js": "2.5.3",
"tone": "14.7.58"
},
"buildModules": {
"install": [
"anchor-js",
"classnames",
"json-url",
"lory.js",
"tone"
],
"installOptions": {
"dest": "public/js/vendor"
}
}
}