This repository has been archived by the owner on Nov 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.5 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "sparks-nmn-dev",
"version": "1.14.24",
"source": "./src/index.html",
"license": "Apache",
"scripts": {
"start": "cross-env BUILD_TYPE=demo parcel --port 8527 --host localhost --dist-dir ./dist/test/",
"start-public": "cross-env BUILD_TYPE=demo parcel --port 8527 --host 0.0.0.0 --dist-dir ./dist/test/",
"build-demo": "ts-node ./src/builder/demo/clean.ts && cross-env BUILD_TYPE=demo parcel build --dist-dir ./dist/demo/ --public-url ./ src/index.html",
"build-lib": "cross-env BUILD_TYPE=lib parcel build --dist-dir ./dist/lib/ --public-url ./ src/nmn/index.ts",
"build-umd": "cross-env BUILD_TYPE=umd parcel build --dist-dir ./dist/umd/ --public-url ./ src/nmn/index-umd.ts",
"build-wrapper": "cross-env BUILD_TYPE=wrapper parcel build --dist-dir ./dist/wrapper/resources/ --public-url ./ src/builder/wrapper/wrapperjs-umd.ts && ts-node ./src/builder/wrapper/wrapper-builder.ts"
},
"browserslist": "> 0.5%, last 2 versions, Firefox ESR, not dead",
"devDependencies": {
"@parcel/packager-ts": "2.8.2",
"@parcel/transformer-sass": "^2.8.2",
"@parcel/transformer-typescript-types": "2.8.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"assert": "^2.0.0",
"buffer": "^5.5.0||^6.0.0",
"cross-env": "7.0.3",
"eslint": "^8.34.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"events": "^3.1.0",
"js-base64": "^3.7.5",
"parcel": "^2.8.2",
"parcel-reporter-static-files-copy": "^1.5.0",
"path-browserify": "^1.0.0",
"process": "^0.11.10",
"promise-worker": "^2.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"sass": "^1.57.1",
"stream-browserify": "^3.0.0",
"tone": "^14.7.77",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vorbis-encoder-js": "^1.0.2"
},
"dependencies": {
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-slider": "^1.1.2",
"@types/jquery": "^3.5.16",
"@types/node": "^18.13.0",
"ace-builds": "^1.14.0",
"jquery": "3.5.1",
"react-ace": "^10.1.0",
"react-jss": "^10.9.2"
},
"staticFiles": [
{
"staticPath": "src/nmn/resource",
"staticOutPath": "nmn/resource",
"env": {
"BUILD_TYPE": "demo"
}
},
{
"staticPath": "src/app/example",
"staticOutPath": "example",
"env": {
"BUILD_TYPE": "demo"
}
}
]
}