-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 998 Bytes
/
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
{
"name": "nx-open-web",
"version": "0.0.0",
"license": "MPL-2.0",
"scripts": {
"prebuild": "npm install && nx reset",
"build": "nx run-many --target=build --all",
"build:demo": "nx run-many --target=build:demo --all --exclude example-explorer",
"run:demo": "npm run build:demo && nx run example-explorer:serve",
"deploy:demo": "npm run build:demo && nx run example-explorer:deploy:demo",
"ci:check": "nx run-many --target=ci:check --all"
},
"private": true,
"devDependencies": {
"@types/node": "^18.15.5",
"cors-anywhere": "^0.4.4",
"netlify-cli": "^15.9.1",
"nx": "19.2.2",
"nx-cloud": "19.0.0",
"prettier": "^2.6.2",
"typescript": "^5.0.2"
},
"//": "Lock peer dependencies to the same versions we use internally",
"dependencies": {
"@netlify/functions": "^1.6.0",
"@types/node": "^14.18.54",
"rxjs": "7.8.1",
"webrtc-issue-detector": "1.10.0"
},
"workspaces": [
"packages/*",
"examples/*"
]
}