-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 756 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "react-ts-node-template",
"version": "1.0.0",
"workspaces": [
"client",
"server"
],
"repository": "https://github.com/kyeb/click",
"author": "Kye Burchard <kyeb@mit.edu>",
"license": "MIT",
"private": true,
"scripts": {
"client": "yarn workspace react-ts-node-template-client dev",
"server": "yarn workspace react-ts-node-template-server dev",
"build:client": "yarn workspace react-ts-node-template-client build",
"build": "yarn build:client",
"typecheck": "yarn workspace react-ts-node-template-client tsc && yarn workspace react-ts-node-template-server tsc",
"start": "echo 'Not implemented for full project yet'"
},
"devDependencies": {
"prettier": "2.7.1"
},
"dependencies": {}
}