forked from zero-to-mastery/drum-root
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.21 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
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "drum-root",
"version": "0.1.0",
"private": true,
"dependencies": {
"@storybook/addon-knobs": "^5.2.5",
"@svgr/webpack": "^4.3.3",
"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.2.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"
},
"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",
"enzyme": "^3.10.0",
"enzyme-adapter-react-15": "^1.4.1",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.6.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": {
"*.js": [
"eslint --fix",
"prettier --write",
"jest --bail --findRelatedTests",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}