-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.4 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
44
45
46
47
{
"name": "rsharp",
"description": "Webapp to practice music sheet reading.",
"author": "soywod <clement.douin@posteo.net>",
"license": "MIT",
"version": "1.0.0",
"private": true,
"homepage": "https://github.com/soywod/rsharp",
"repository": {
"type": "git",
"url": "https://github.com/soywod/rsharp.git"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^26.0.19",
"@types/vexflow": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"jest": "^26.6.3",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.4",
"prettier-stylelint": "^0.4.2",
"stylelint": "^11.0.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-order": "^3.1.1",
"stylelint-prettier": "^1.1.1",
"typescript": "^3.8.3"
},
"dependencies": {
"vexflow": "^3.0.9"
},
"scripts": {
"start": "parcel serve -p 3000 lib/index.html",
"test": "yarn jest",
"prebuild": "tsc --noEmit",
"build": "parcel build -d pkg lib/index.html",
"postbuild": "cp static/_redirects pkg/"
}
}