This repository has been archived by the owner on Oct 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 134
/
Copy pathpackage.json
99 lines (99 loc) · 2.59 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
{
"name": "drum-root",
"version": "0.1.0",
"private": true,
"dependencies": {
"@storybook/addon-knobs": "^5.2.5",
"@svgr/webpack": "^4.3.3",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"bootstrap": "^4.3.1",
"dotenv": "^8.1.0",
"is-node": "^1.0.2",
"isomorphic-unfetch": "^3.0.0",
"js-cookie": "^2.2.1",
"next": "^9.1.1",
"next-assets-import": "0.0.2",
"next-cookies": "^1.1.3",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-helmet": "^5.2.1",
"react-input-slider": "^5.1.3",
"react-scripts": "^3.4.0",
"styled-components": "^4.4.0",
"styled-icons": "^9.0.1",
"tone": "^13.8.25"
},
"scripts": {
"dev": "next -- -p 3001",
"build": "next build",
"start": "next start",
"test": "react-scripts test",
"eject": "react-scripts eject",
"test:e2e": "jest -c jest-e2e.config.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"test:staged": "cross-env CI=true react-scripts test --findRelatedTests",
"ci": "npm run lint && cross-env CI=true npm run test && npm run test:e2e"
},
"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/core": "^7.7.0",
"@storybook/addon-actions": "^5.2.5",
"@storybook/addon-links": "^5.2.5",
"@storybook/addons": "^5.2.5",
"@storybook/react": "^5.2.5",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"cross-env": "^6.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.9",
"jest-puppeteer": "^4.3.0",
"lint-staged": "^9.4.2",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"puppeteer": "^2.0.0"
},
"lint-staged": {
"./src/*.js": [
"eslint --fix src",
"prettier --write",
"npm run test:staged",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}