forked from raystack/apsara
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.98 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "apsara",
"version": "1.0.0",
"description": "APSARA is an experimental and work in progress design system written in TypeScript",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"prebuild": "npm run clean",
"clean": "lerna exec -- rimraf lib",
"build": "turbo run build",
"dev": "turbo run dev",
"commit": "git-cz",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o public -s ./.storybook/images",
"test": "turbo run test",
"lint": "turbo run lint",
"lint:fix": "lerna run lint:fix"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@storybook/addon-essentials": "^6.5.0",
"@storybook/addon-links": "^6.5.0",
"@storybook/preset-ant-design": "^0.0.2",
"@storybook/react": "^6.5.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@types/node": "^14.10.1",
"@types/ramda": "0.27.23",
"@types/react-lottie": "^1.2.5",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-storybook": "^0.5.12",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-styled-components": "^7.0.3",
"lerna": "^3.22.1",
"prettier": "^2.1.2",
"ramda": "^0.27.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-jest": "^26.3.0",
"turbo": "^1.3.1",
"typescript": "^4.0.2",
"postcss": "^8.0.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"command": {
"publish": {
"conventionalCommits": true
},
"version": {
"message": "chore(release): publish %s"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {}
}