-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 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
{
"name": "with-styled-components",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build && next export",
"lint": "eslint . --ext .js",
"start": "npm run build && next start",
"print-config": "node ./scripts/print-config.js"
},
"dependencies": {
"@c-hive/team-contribution-calendar": "^0.3.0",
"@material-ui/core": "^4.8.3",
"js-yaml": "^3.13.1",
"next": "^9.3.2",
"react": "16.8.3",
"react-dom": "16.8.3",
"rss-parser": "^3.7.2",
"styled-components": "^4.3.2",
"styled-normalize": "^8.0.6",
"url-parse": "^1.4.7"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"babel-plugin-styled-components": "^1.10.6",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^3.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.16.4"
},
"pre-commit": [
"lint"
],
"engines": {
"npm": ">=6.6"
}
}