forked from mulcloud/muld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.78 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
{
"name": "@trillion/muld",
"version": "0.0.6-beta.5",
"description": "mobile UI components built on react",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"dev": "muld-tools dev",
"build": "muld-tools build && tsc -p ./scripts",
"release:site": "sh scripts/site/release.sh",
"clean": "muld-tools clean",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest --no-cache",
"test-update": "jest --no-cache --update-snapshot"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn lint",
"git add ."
]
},
"files": [
"es",
"lib"
],
"dependencies": {
"classnames": "^2.2.6",
"react-copy-to-clipboard": "^5.0.2",
"react-transition-group": "^4.4.1",
"styled-components": "^5.1.1",
"styled-system": "^5.1.5",
"@types/styled-system": "^5.1.10"
},
"peerDependencies": {
"react": ">=16.13.1",
"react-dom": ">=16.13.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.1",
"@testing-library/react": "^10.4.7",
"@testing-library/react-hooks": "^3.3.0",
"@trillion/fabric": "^0.0.1-beta.0",
"@trillion/muld-tools": "0.0.2-beta.1",
"@types/classnames": "^2.2.10",
"@types/jest": "^26.0.4",
"@types/react": "^16.9.43",
"@types/react-copy-to-clipboard": "^4.3.0",
"@types/react-dom": "^16.9.8",
"@types/react-transition-group": "^4.4.0",
"@types/styled-components": "^5.1.1",
"babel-jest": "^26.1.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-styled-components": "^7.0.2",
"lint-staged": "^10.2.11",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}