-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.42 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
{
"name": "stash",
"version": "0",
"description": "get stash",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --mode development",
"netlify": "NPM_CONFIG_PRODUCTION=false yarn install && yarn build",
"build": "rimraf dist && webpack --mode production",
"clean": "rimraf node_modules && yarn install",
"test": "jest",
"size": "yarn build && size-limit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"yarn eslint"
]
},
"dependencies": {
"axios": "^0.19.0",
"core-js": "^3.2.1",
"preact": "^10.0.0-rc.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"styled-components": "^4.2.0",
"styled-system": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@size-limit/preset-app": "^2.1.1",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/styled-components": "^4.1.18",
"@types/styled-system": "^5.1.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.4",
"babel-plugin-styled-components": "^1.10.6",
"cypress": "^3.4.1",
"eslint": "^6.2.1",
"eslint-config-prettier": "^6.1.0",
"eslint-config-standard": "^14.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.1",
"faker": "^4.1.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.4",
"jest": "^24.9.0",
"jest-dom": "^4.0.0",
"lint-staged": "^9.2.3",
"prettier": "^1.18.2",
"prettier-eslint": "^9.0.0",
"react-hot-loader": "^4.12.11",
"rimraf": "^3.0.0",
"style-loader": "^1.0.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.1.4"
},
"size-limit": [
{
"path": "dist/main.*.js",
"limit": "5 s"
}
]
}