-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.68 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "dappstore",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/RealCoolSnow/DAppStore#readme",
"bugs": {
"url": "https://github.com/RealCoolSnow/DAppStore/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RealCoolSnow/DAppStore.git"
},
"license": "ISC",
"author": "",
"main": "index.js",
"scripts": {
"build": "npm run build:server && npm run build:front",
"build:front": "pnpm build:react-hooks && pnpm run build --filter \"front\"",
"build:react-hooks": "pnpm run build --filter \"react-hooks\"",
"build:server": "pnpm run build --filter \"server\"",
"dev:front": "pnpm run dev --filter \"front\"",
"dev:react-hooks": "pnpm run dev --filter \"react-hooks\"",
"dev:react-hooks-example": "pnpm run dev --filter \"react-hooks-example\"",
"dev:server": "pnpm run dev --filter \"server\"",
"sort": "npx sort-package-json \"package.json\" \"packages/*/package.json\"",
"test": "echo \"Error: no test specified\" && exit 1",
"test:react-hooks": "pnpm run test --filter \"react-hooks\""
},
"devDependencies": {
"@types/jest": "27.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.9.0",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"turbo": "^1.1.3"
},
"turbo": {
"npmClient": "pnpm",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**"
]
},
"deploy": {
"dependsOn": [
"build"
]
},
"dev": {
"cache": false
},
"test": {
"dependsOn": [
"^test"
]
}
}
}
}