-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.36 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
{
"name": "brown-bag-testing",
"private": true,
"scripts": {
"start": "webpack-dev-server --config webpack/webpack.dev.js",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "NODE_ENV=production webpack --config webpack/webpack.prod.js",
"lint": "eslint . --ext js,ts,tsx",
"typecheck": "tsc -p tsconfig.json",
"test": "jest",
"precommit": "npm run lint && npm run typecheck && npm run test"
},
"dependencies": {
"@hot-loader/react-dom": "^16.9.0",
"@reach/router": "^1.2.1",
"color": "^3.1.2",
"lodash": "^4.17.13",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-hot-loader": "^4.12.5",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.2",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@testing-library/react": "^9.1.4",
"@types/color": "^3.0.0",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.136",
"@types/reach__router": "^1.2.4",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/styled-components": "^4.1.18",
"@types/webpack-env": "^1.13.9",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-styled-components": "^1.10.6",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.18.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.4",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"typescript": "^3.5.3",
"url-loader": "^2.0.1",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
}
}