-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "stellar-wind",
"version": "0.1.0",
"description": "Unique music composed by a decentralized organism",
"main": "index.html",
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.html --public-url ./ --no-source-maps -o index.html",
"prebuild": "rm -rf dist",
"postbuild": "cp _redirects dist/_redirects",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"prettier": "prettier --write ./app",
"lint": "eslint ./app"
},
"license": "MIT",
"dependencies": {
"mo-js": "^0.288.2",
"stellar-sdk": "^10.4.0",
"tone": "^14.7.77"
},
"devDependencies": {
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"gh-pages": "^4.0.0",
"parcel-bundler": "^1.12.5",
"prettier": "^2.7.1"
},
"prettier": {
"tabWidth": 4,
"printWidth": 100,
"singleQuote": false,
"trailingComma": "all",
"arrowParens": "always"
}
}