-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.07 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.07 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
{
"name": "website-components-template",
"packageManager": "yarn@4.1.0",
"private": true,
"workspaces": [
"src/*",
"builder",
"server",
"tutorial"
],
"scripts": {
"build": "cd builder && yarn run build",
"build:dev": "cd builder && yarn run build:dev",
"watch:tunnel": "cd builder && yarn run watch:tunnel",
"watch:local": "cd builder && yarn run watch:local",
"build:prod": "cd builder && yarn run build:prod",
"build:prod-commit": "cd builder && yarn run build:prod-commit",
"start": "cd server && yarn run start",
"serve": "cd builder && yarn run serve",
"watch": "cd builder && yarn run watch:tunnel",
"build:tutorial": "cd tutorial && yarn build:prod",
"build:tutorial:gh": "cd tutorial && yarn build:gh",
"deploy:gh-pages": "gh-pages -d dist",
"build:manifest": "cd builder && yarn run build:manifest"
},
"dependencies": {
"gh-pages": "^5.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}