-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
131 lines (131 loc) · 3.75 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "portfolio",
"version": "1.0.0",
"description": "Portfolio",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/DaveBitter/portfolio.git"
},
"keywords": [
"dave",
"bitter",
"davebitter",
"portfolio",
"react",
"next",
"typescript",
"graphql"
],
"author": "Dave Bitter <daveybitter@gmail.com> (https://www.davebitter.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/DaveBitter/portfolio/issues"
},
"homepage": "https://github.com/DaveBitter/portfolio#readme",
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"export": "next export",
"deploy": "npm run build && npm run export",
"generate": "plop",
"storybook": "start-storybook -p 1337",
"storybook:build": "build-storybook -c .storybook -o .storybook-build",
"test": "jest --config config/tests/jest.config.js --verbose",
"test:watch": "jest --config config/tests/jest.config.js --watch --verbose",
"test:precommit": "jest --config config/tests/jest.config.js --verbose --findRelatedTests --bail",
"test:coverage": "jest --config config/tests/jest.config.js --coverage --verbose",
"eslint": "eslint --fix",
"stylelint": "stylelint **/*.scss --syntax=scss"
},
"lint-staged": {
"*.{ts,tsx}": "yarn test:precommit && yarn eslint",
"*.scss": "yarn stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"chrome-aws-lambda": "^10.0.0",
"d3": "^6.7.0",
"highlight.js": "^10.7.2",
"marked": "^2.0.3",
"next": "^10.2.0",
"next-page-transitions": "^1.0.0-beta.2",
"nprogress": "^0.2.0",
"puppeteer-core": "^10.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga": "^2.7.0"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@storybook/addon-a11y": "^6.2.9",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-knobs": "^6.2.9",
"@storybook/addon-links": "^5.3.21",
"@storybook/addons": "^5.3.21",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.2.9",
"@svgr/webpack": "^5.5.0",
"@types/d3": "^5.16.4",
"@types/enzyme": "^3.10.8",
"@types/highlight.js": "^9.12.4",
"@types/jest": "^25.2.3",
"@types/marked": "^0.7.4",
"@types/node": "^13.13.51",
"@types/nprogress": "^0.2.0",
"@types/react": "^16.14.5",
"@types/react-dom": "^16.9.12",
"@types/react-ga": "^2.3.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"@zeit/next-sass": "^1.0.1",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.5.1",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chromium": "^3.0.2",
"crypto": "^1.0.1",
"css-loader": "^3.6.0",
"enzyme": "^3.11.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.23.2",
"front-matter-loader": "^0.2.0",
"husky": "^4.3.8",
"jest": "^25.5.4",
"json-loader": "^0.5.7",
"lint-staged": "^10.5.4",
"node-sass": "^4.14.1",
"path": "^0.12.7",
"plop": "^2.7.4",
"prop-types": "^15.7.2",
"react-docgen-typescript-loader": "^3.7.2",
"sass-loader": "^8.0.2",
"storybook": "^6.2.9",
"style-loader": "^1.3.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-declaration-strict-value": "^1.7.12",
"stylelint-scss": "^3.19.0",
"svg-react-loader": "^0.4.6",
"ts-jest": "^25.5.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.9",
"webpack": "^4.46.0"
}
}