-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.15 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.15 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "makelily",
"version": "0.1.7",
"license": "AGPL-3.0",
"description": "Ad-hoc UIs for creating and modifying Lilypond",
"main": "build/dist/Makelily.js",
"types": "build/dist/Makelily.d.ts",
"homepage": "https://www.hacklily.org/makelily",
"dependencies": {
"@types/d3-dispatch": "^3.0.1",
"@types/d3-drag": "^3.0.1",
"@types/d3-timer": "^3.0.0",
"@types/invariant": "^2.2.35",
"@types/lodash": "^4.14.183",
"@types/node": "^18.7.6",
"@types/opentype.js": "^1.3.4",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"aphrodite": "~2.4.0",
"invariant": "~2.2.4",
"lodash": "~4.17.15",
"musicxml-interfaces": "~0.0.21",
"opentype.js": "^1.3.4",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webcola": "^3.4.0"
},
"scripts": {
"test": "eslint ./src --ext tsx,ts,js,jsx && tsc --noEmit",
"build": "npm test && tsc",
"start": "webpack-dev-server --open --mode development"
},
"devDependencies": {
"@babel/compat-data": "^7.18.8",
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.18.9",
"@types/jest": "^28.1.7",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"autoprefixer": "^10.4.8",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "^2.7.1",
"react-router": "^6.3.0",
"rimraf": "3.0.2",
"style-loader": "^3.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0"
},
"prettier": {
"trailingComma": "all"
}
}