-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
61 lines (61 loc) · 1.62 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
{
"name": "atomic-layout",
"description": "Physical representation of layout composition to create declarative, responsive layouts in React.",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"lint": "lerna exec yarn lint",
"clean": "lerna exec yarn clean",
"build": "lerna exec yarn build",
"test": "lerna exec yarn test",
"verify": "lerna exec yarn verify"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint",
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "7.7.2",
"@babel/plugin-proposal-class-properties": "7.7.0",
"@babel/plugin-proposal-export-default-from": "7.5.2",
"@babel/plugin-proposal-export-namespace-from": "7.5.2",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/preset-env": "7.7.4",
"@babel/preset-react": "7.7.4",
"@babel/preset-typescript": "7.7.4",
"@storybook/addon-actions": "5.3.7",
"@storybook/addon-links": "5.3.7",
"@storybook/react": "5.3.7",
"chalk": "3.0.0",
"cross-env": "5.2.0",
"husky": "3.1.0",
"jest": "24.9.0",
"lerna": "3.16.4",
"lint-staged": "9.5.0",
"prettier": "1.19.1",
"rimraf": "3.0.0",
"rollup": "1.27.5",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-typescript": "1.0.1",
"storybook": "5.3.7",
"ts-jest": "24.2.0",
"tslib": "1.10.0",
"tslint": "5.19.0",
"tslint-config-prettier": "1.18.0",
"typescript": "3.7.2"
}
}