-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.11 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
{
"name": "etch",
"version": "0.0.0",
"description": "Etch collaborative drawing",
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "ssh://[email protected]:etch.git"
},
"author": "Gen Hames",
"scripts": {
"install:client": "cd packages/client; npm install",
"install:server": "cd packages/server; npm install",
"install": "run-p install:*",
"build:client": "cd packages/client; npm run build",
"build:server": "cd packages/server; npm run build",
"build": "run-p build:*",
"start:client": "cd packages/client; npm run start",
"start:server": "cd packages/server; npm run start",
"start": "run-p start:*",
"production:client": "cd packages/client; npm run production",
"production:server": "cd packages/server; npm run production",
"production": "run-p production:*"
},
"devDependencies": {
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.14.0",
"eslint-plugin-react": "^7.21.5",
"npm-run-all": "^4.1.5",
"typescript": "^4.1.2"
}
}