-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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
{
"name": "collab-editor",
"version": "1.0.0",
"main": "index.js",
"private": true,
"scripts": {
"start": "cd server && npm run start",
"build": "cd web && npm run build && fse remove ../server/public && fse copy --quiet dist ../server/public",
"prebuild": "yarn && cd server && yarn && cd ../web && yarn",
"build:web": "cd web && npm run build",
"build:server": "cd server && npm run build",
"dev:web": "cd web && npm run dev",
"dev:server": "cd server && npm run dev",
"test": "jest --coverage",
"coverage": "codecov"
},
"license": "MIT",
"bug": {
"url": "https://github.com/BaffinLee/collab-editor/issues"
},
"homepage": "https://github.com/BaffinLee/collab-editor",
"repository": {
"type": "git",
"url": "[email protected]:BaffinLee/collab-editor.git"
},
"author": "Baffin Lee <[email protected]>",
"devDependencies": {
"@atao60/fse-cli": "^0.1.7",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"codecov": "^3.8.3",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
}
}