forked from priceline/design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.56 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.56 KB
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
{
"private": true,
"scripts": {
"prepare": "lerna bootstrap --hoist",
"bundle:audit": "AUDIT_BUNDLE=true npm run prepare",
"clean": "lerna run clean",
"changed": "lerna changed",
"diff": "lerna diff",
"publish": "lerna publish",
"test": "jest",
"coverage": "jest --coverage",
"codecov": "npx codecov",
"lint": "eslint .",
"start": "start-storybook -p 8000",
"storybook": "build-storybook -o docs/out/storybook",
"create-component": "npm run plop",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"devDependencies": {
"@babel/core": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"@babel/preset-react": "^7.10.1",
"@babel/runtime": "^7.10.1",
"@compositor/kit": "^1.0.47",
"@storybook/addon-a11y": "^5.3.19",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-docs": "^5.3.19",
"@storybook/addon-info": "^5.3.19",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-viewport": "^5.3.19",
"@storybook/react": "^5.3.19",
"@testing-library/jest-dom": "^5.8.0",
"@testing-library/react": "^10.0.4",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"all-contributors-cli": "^6.15.0",
"babel-loader": "^8.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.1.0",
"eslint-config-pcln-accessibility": "^1.0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"hoist-non-react-statics": "^3.3.2",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-styled-components": "^6.3.4",
"lerna": "^3.22.0",
"lint-staged": "^10.2.7",
"npm-run-all": "^4.1.5",
"plop": "^2.6.3",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-draggable-playground": "^1.0.0",
"storybook-dark-mode": "^0.2.0",
"styled-components": "^4.4.1",
"typescript": "^3.9.3"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write",
"*.js": "eslint"
},
"engines": {
"node": ">=10",
"npm": ">=6.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}