-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
38
39
40
41
{
"name": "wizardoc",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@magicspace/configs": "0.1.46",
"cross-env": "^7.0.3",
"lerna": "^3.20.2",
"rimraf": "^3.0.2",
"tslint-config-prettier": "^1.10.0",
"prettier": "^2.2.1",
"tslint": "5.11.0",
"tslint-language-service": "0.9.9",
"typescript": "3.8.3"
},
"scripts": {
"clear": "rimraf node_modules && rimraf client/node_modules && rimraf server/node_modules",
"client:start": "cd client && yarn start",
"server:start": "cd server && yarn start:dev",
"bootstrap": "lerna bootstrap",
"compile": "tsc -p packages/http-request && tsc -p shared && tsc -p packages/http-utils && tsc -p packages/injector && tsc -p packages/markdown",
"prepare": "yarn bootstrap && yarn compile",
"prettier-check:client": "prettier --check \"client/src/**/*.{ts,tsx}\"",
"prettier-fix:client": "yarn prettier-check:client --write"
},
"dependencies": {
},
"workspaces": {
"packages": [
"server",
"shared",
"client",
"packages/**/*"
]
}
}