-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.64 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
{
"name": "nrbernard.com",
"version": "1.0.0",
"description": "Personal site for Nick Bernard",
"main": "index.js",
"repository": "git@github.com:nrbernard/nrbernard.com.git",
"author": "Nick Bernard <nrobertbernard@gmail.com>",
"license": "MIT",
"private": false,
"dependencies": {
"@chakra-ui/core": "^0.7.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@segment/snippet": "^4.10.0",
"@types/react-transition-group": "^4.4.0",
"@types/segment-analytics": "^0.0.32",
"emotion-theming": "^10.0.27",
"next": "^9.5.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-transition-group": "^4.4.1"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"test": "jest",
"circleci:local": "circleci local execute -c process.yml --job",
"types:check": "tsc --noEmit"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.4",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"@types/react": "^16.9.34",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"husky": ">=4",
"jest": "~25",
"lint-staged": ">=10",
"prettier": "^2.0.5",
"ts-jest": "^25.5.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn types:check"
}
},
"lint-staged": {
"*.tsx": "eslint --cache --fix"
}
}