-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
30 lines (30 loc) · 920 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": "root",
"private": true,
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.3.4",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"bandcamp-scraper": "^1.4.1",
"eslint": "^7.10.0",
"eslint-config-metalex9": "^0.3.0",
"glob": "^7.1.3",
"lerna": "^3.22.1",
"prettier": "^1.16.4",
"rollup": "^2.34.2",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"lint": "eslint \".\"",
"lint:packages": "eslint \"packages\"",
"build": "rollup -c && node scripts/update-collection.js",
"preversion": "npm run lint:packages && npm run build",
"postversion": "git push && git push --tags",
"test-player": "npm start --prefix ./test-player"
},
"dependencies": {}
}