-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 loc) · 1.13 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
{
"private": true,
"sideEffects": false,
"name": "remix-piano-demos",
"author": "Jon Jensen",
"scripts": {
"build": "remix build",
"dev": "remix dev",
"postinstall": "patch-package",
"localprod": "bash -c 'export SERVER_HOST=\"${SERVER_HOST:-$(ipconfig getifaddr en0)}\"; export ASSET_HOST=\"${ASSET_HOST:-$SERVER_HOST:3001}\"; npm run build && concurrently \"npm start\" \"PORT=3001 npm start\"'",
"start": "remix-serve build"
},
"dependencies": {
"@remix-run/node": "^1.7.2",
"@remix-run/react": "^1.7.2",
"@remix-run/serve": "^1.7.2",
"formdata-submitter-polyfill": "^1.0.1",
"globby": "^11.1.0",
"lamejs": "^1.2.1",
"patch-package": "^6.4.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tone": "^14.7.77"
},
"devDependencies": {
"@remix-run/dev": "^1.7.2",
"@remix-run/eslint-config": "^1.7.2",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript/lib-dom": "npm:@types/web@^0.0.99",
"concurrently": "^8.0.1",
"eslint": "^8.23.1",
"typescript": "^4.7.4"
},
"license": "ISC",
"engines": {
"node": ">=14"
}
}