-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
74 lines (74 loc) · 2.04 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
{
"name": "@dashlane/ui-components",
"version": "0.0.1",
"description": "A set of reusable UI React components",
"main": "build/main.js",
"license": "ISC",
"types": "build/index.d.ts",
"author": "Dashlane",
"scripts": {
"start": "webpack --watch --mode=development",
"build": "webpack --mode=production",
"test": "jest --coverage",
"test:watch": "yarn test --watch",
"docz:dev": "docz dev",
"docz:build": "docz build",
"check-lint": "eslint --ext tsx,ts,js,json .",
"exec-docz-update": "node config/updateDoczBuild.js"
},
"dependencies": {
"styled-components": "^4.3.1"
},
"devDependencies": {
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.17",
"@types/react": "^16.9.1",
"@types/styled-components": "^4.1.18",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"awesome-typescript-loader": "^5.2.1",
"clean-webpack-plugin": "^3.0.0",
"docz": "^1.2.0",
"docz-theme-default": "^1.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.0.3",
"jest": "^24.8.0",
"jest-styled-components": "^6.3.3",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3",
"url-loader": "^2.1.0",
"webpack": "4.39.1",
"webpack-cli": "^3.3.6"
},
"resolutions": {
"docz/**/webpack": "4.28.4",
"react-docgen-typescript": ">=1.13.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*": [
"yarn pretty-quick",
"yarn exec-docz-update"
],
"*.{tsx,ts,js,json}": "eslint"
}
}