-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.29 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "circleback-design-system",
"description": "Circleback design system",
"version": "1.24.5",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/index.js",
"repository": "https://github.com/amalv/circleback-design-system.git",
"dependencies": {
"@material-ui/core": "^4.8.2",
"@storybook/addon-actions": "^5.2.8",
"@types/jest": "25.1.4",
"@types/node": "13.9.0",
"@types/ramda": "^0.26.39",
"@types/react": "16.9.23",
"@types/react-dom": "16.9.5",
"@types/styled-components": "^5.0.1",
"babel-plugin-file-loader": "^2.0.0",
"csstype": "^2.6.7",
"ramda": "^0.27.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-scripts": "3.4.0",
"storybook-addon-material-ui": "^0.9.0-alpha.20",
"styled-components": "^5.0.0-regexrehydrate",
"typescript": "3.8.3"
},
"scripts": {
"build": "build-storybook -o build && npm run build:lib && npm run copy-png-to-build",
"build:lib": "tsc --jsx react --skipLibCheck",
"build:watch": "tsc -w --jsx react --skipLibCheck",
"build:babel": "BABEL_ENV=production babel src -d dist2 --extensions .ts,.tsx",
"build-storybook": "build-storybook -s public",
"eject": "react-scripts eject",
"eslint": "eslint './src/**/*' --ext .ts,.tsx --fix",
"prettier:check": "prettier --check 'src/**/*.{ts,tsx}'",
"start": "react-scripts start",
"storybook": "start-storybook -p 9009 -s public",
"test": "react-scripts test",
"copy-png-to-build": "cpx \"./public/**/*.png\" ./build/"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/preset-typescript": "^7.7.7",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@storybook/addon-info": "^5.2.8",
"@storybook/addon-links": "^5.2.8",
"@storybook/addon-storysource": "^5.2.8",
"@storybook/addon-viewport": "^5.2.8",
"@storybook/addons": "^5.2.8",
"@storybook/react": "^5.2.8",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"cpx": "^1.5.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^1.18.2",
"react-docgen-typescript-loader": "^3.3.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.1.0"
},
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
}
}