-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.32 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": "quicktik",
"version": "0.0.0",
"description": "A simple time bounded to-do task scheduler.",
"author": "im-mou",
"license": "MIT",
"repository": "im-mou/quicktik",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"export:next-app": "lerna run --scope @im-mou/next-app --stream export",
"package:next-app": "lerna run --scope @im-mou/next-app --stream start",
"dev": "lerna run --scope @im-mou/next-app --stream dev",
"start": "run-p --print-label package:*",
"build": "lerna run --parallel build",
"export": "yarn build && yarn export:next-app",
"test": "lerna run test --stream",
"prepare": "husky install",
"lint": "lerna run lint",
"storybook": "lerna run storybook"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"cross-env": "^7.0.3",
"enforce-branch-name": "^1.0.1",
"eslint": "^8.10.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}