-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.38 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.38 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
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
{
"name": "psychopompcomics.com",
"version": "1.0.0",
"author": "Caleb Nelson, Scott St. John",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/calebn/psychopompcomics.git"
},
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --",
"test-ci": "jest --ci",
"test-watch": "jest --watch",
"coverage": "jest --collectCoverage --",
"lint": "next lint",
"format": "prettier --write .",
"analyze": "cross-env ANALYZE=true yarn build",
"doc-up": "docker-compose up -d --remove-orphans",
"doc-dev": "docker-compose down && docker-compose up -d --build --remove-orphans",
"doc-down": "docker-compose down",
"doc-build": "docker-compose build",
"doc-build-psy": "docker-compose build psychopompcomics",
"doc-build-nginx": "docker-compose build nginx",
"prepare": "husky install",
"precommit": "lint-staged"
},
"babel": {
"presets": [
"next/babel"
],
"plugins": [
[
"styled-components",
{
"ssr": true
}
]
]
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{html,js}": [
"prettier --write"
]
},
"eslintConfig": {
"extends": [
"next/core-web-vitals"
],
"rules": {
"react/self-closing-comp": [
"error"
]
}
},
"prettier": {
"endOfLine": "lf",
"printWidth": 80,
"trailingComma": "es5",
"semi": true,
"jsxSingleQuote": true,
"singleQuote": true,
"useTabs": true,
"tabWidth": 2,
"arrowParens": "always"
},
"dependencies": {
"framer-motion": "^6.2.8",
"html-entities": "^2.3.2",
"next": "^12.0.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-mailchimp-subscribe": "^2.1.3",
"sharp": "^0.33.1",
"styled-components": "^5.2.3",
"swiper": "8.4.7"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.1.4",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"babel-plugin-styled-components": "^1.12.0",
"cross-env": "^7.0.3",
"eslint": "^8.6.0",
"eslint-config-next": "12.0.8",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"jest-css-modules": "^2.1.0",
"lint-staged": "^12.1.7",
"next-bundle-analyzer": "^0.6.4",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"react-test-renderer": "^17.0.2",
"typescript": "^4.6.2"
}
}