-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.04 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "chordbox",
"version": "1.0.14",
"description": "A simple SVG-based guitar chord renderer.",
"main": "dist/chordbox.umd.js",
"exports": {
".": "./dist/chordbox.umd.js"
},
"author": "GastroGeek <gastrogeek@gmail.com>",
"license": "MIT",
"files": [
"dist"
],
"typings": "dist/chordbox.d.ts",
"scripts": {
"dev": "npm-run-all --parallel pre-build demo-server demo-ui watch",
"pre-build": "npm-run-all pre-build-chordbox pre-build-demo-server",
"pre-build-chordbox": "webpack -c ./webpack.config.js",
"pre-build-demo-server": "webpack -c ./demo/webpack.config.js",
"demo-server": "nodemon -L ./demo/dist/server.js --watch ./demo/dist --watch ../dist",
"demo-ui": "nodemon -L --exec 'serve -p 9999 ./demo/dist'",
"watch": "npm-run-all --parallel watch-chordbox watch-demo-server",
"watch-chordbox": "webpack -c ./webpack.config.js --watch",
"watch-demo-server": "webpack -c ./demo/webpack.config.js --watch",
"build": "npm-run-all lint build-chordbox build-typings",
"build-chordbox": "NODE_ENV=production webpack -c ./webpack.config.js",
"build-typings": "tsc -p tsconfig.json",
"lint": "eslint .",
"prepublishOnly": "npm-run-all lint build"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"cors": "^2.8.5",
"eslint": "^8.23.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"express": "^4.18.1",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"ts-loader": "^9.3.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@svgdotjs/svg.js": "^3.1.2",
"svgdom": "^0.1.10"
}
}