-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.91 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
{
"name": "colearn-ui",
"description": "colearn app ui kit",
"version": "1.0.0",
"author": "Colearn",
"license": "ISC",
"main": "index.js",
"private": true,
"homepage": "https://github.com/colearnclub/colearn-ui#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/colearnclub/colearn-ui.git"
},
"bugs": {
"url": "https://github.com/colearnclub/colearn-ui/issues"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "eslint 'packages/**/*.{js,jsx,scss,ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,jsx,scss,ts,tsx}' --fix",
"changeset": "changeset",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o ./docs"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@chakra-ui/icons": "^2.0.2",
"@chakra-ui/react": "^2.2.1",
"@chakra-ui/system": "^2.1.3",
"@changesets/cli": "^2.22.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@storybook/addon-actions": "^6.5.7",
"@storybook/addon-essentials": "^6.5.7",
"@storybook/addon-links": "^6.5.7",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.5.7",
"@svgr/webpack": "^5.5.0",
"babel-loader": "^8.2.3",
"date-fns": "^2.28.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.0.0",
"framer-motion": "4.1.17",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"prettier": "^2.6.2",
"react": "^18.1.0",
"react-day-picker": "^8.0.6",
"react-dom": "^18.1.0",
"react-router-dom": "^6.3.0",
"turbo": "^1.2.16",
"typescript": "^4.7.3",
"webpack": "^5.69.0"
},
"packageManager": "[email protected]",
"lint-staged": {
"packages/**/*.{js,jsx,scss,ts,tsx}": [
"pnpm run lint"
]
},
"engines": {
"node": ">=16",
"pnpm": ">=6"
}
}