-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.5 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
65
66
67
68
69
70
71
{
"name": "design-system-boilerplate",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/flexdinesh/design-system-boilerplate "
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"clean:ds": "manypkg run @unpublished/design-system clean",
"clean:next": "manypkg run @ds-boilerplate/nextjs-example clean",
"clean:parcel": "manypkg run @ds-boilerplate/parcel-example clean",
"clean:root": "rimraf --no-glob .parcel-cache tsconfig.tsbuildinfo ./node_modules/.cache",
"clean": "yarn clean:root && yarn clean:ds && yarn clean:parcel && yarn clean:next",
"build:next": "manypkg run @ds-boilerplate/nextjs-example build",
"build:next:static": "manypkg run @ds-boilerplate/nextjs-example build:static",
"dev:parcel": "manypkg run @ds-boilerplate/parcel-example dev",
"dev:next": "manypkg run @ds-boilerplate/nextjs-example dev",
"build": "preconstruct build",
"// dev": "// why isnt this working? preconstruct dev",
"dev": "preconstruct dev",
"watch": "preconstruct watch",
"fix": "manypkg fix && preconstruct fix",
"check": "manypkg check && preconstruct validate",
"ds:storybook": "manypkg run @unpublished/design-system storybook",
"typecheck:ds": "manypkg run @unpublished/design-system typecheck",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"// postinstall": "preconstruct dev"
},
"engines": {
"node": "^14.13.1 || >=16.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"dependencies": {
"@emotion/eslint-plugin": "^11.7.0",
"@manypkg/cli": "^0.19.1",
"@mdx-js/react": "^2.0.0",
"@preconstruct/cli": "^2.1.5",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"eslint": "8.5.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "25.3.2",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-regexp": "1.5.1",
"eslint-plugin-storybook": "0.5.5",
"eslint-plugin-testing-library": "5.0.1",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"typescript": "4.5.4"
},
"manypkg": {
"defaultBranch": "main"
},
"preconstruct": {
"packages": [
"packages/design-system"
]
}
}