-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 2.02 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
{
"name": "wdlk",
"version": "1.0.1",
"private": true,
"description": "WDLK multi package repo",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/prismjs",
"**/ts-node",
"**/@types/node"
]
},
"scripts": {
"dev": "lerna run dev --parallel",
"clean": "lerna run clean --parallel",
"lint": "lerna run lint --parallel",
"test": "lerna run test --parallel",
"build": "lerna run build --parallel",
"build:components": "yarn workspace @wdlk/components build",
"build:hooks": "yarn workspace @wdlk/hooks build",
"store:build": "yarn workspace @wdlk/store store:build",
"build:theme-query": "yarn workspace theme-query build",
"clean:store": "yarn workspace @wdlk/store clean",
"dev:components": "yarn workspace @wdlk/components dev",
"dev:hooks": "yarn workspace @wdlk/hooks dev",
"store": "yarn workspace @wdlk/store store",
"dev:theme-query": "yarn workspace theme-query dev",
"lint:components": "yarn workspace @wdlk/components lint",
"lint:hooks": "yarn workspace @wdlk/hooks lint",
"lint:store": "yarn workspace @wdlk/store lint",
"lint:theme-query": "yarn workspace theme-query lint",
"prism:components": "yarn workspace @wdlk/components codemod:prism",
"test:components": "yarn workspace @wdlk/components test",
"test:hooks": "yarn workspace @wdlk/hooks test",
"test:store": "yarn workspace @wdlk/store test",
"test:theme-query": "yarn workspace theme-query test",
"type-check:store": "yarn workspace @wdlk/store type-check"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.7.0",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"lerna": "^3.22.1",
"typescript": "4.6"
}
}