-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.55 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
{
"name": "nextjs-my-comics",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 80",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"export": "npm run build && next export",
"start": "next start",
"test": "jest",
"test:update": "jest --updateSnapshot",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:clear": "jest --clearCache",
"type-check": "tsc --noEmit",
"lint": "npx eslint src --max-warnings 0 --ext .js,.ts,.jsx,.tsx",
"prettier": "prettier --write {src/**/*.tsx,src/**/*.ts}",
"lint:fix": "npx eslint --fix src --ext .js,.ts,.jsx,.tsx",
"publish": "rm -rf out/image-optimization && aws s3 sync out s3://comics.tonarie.com --delete --acl public-read && aws s3 cp s3://comics.tonarie.com/ s3://comics.tonarie.com/_next/ --metadata-directive REPLACE --acl public-read --cache-control 31536000 --recursive"
},
"dependencies": {
"@emotion/cache": "^11.7.1",
"@emotion/css": "^11.7.1",
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.3",
"@next/bundle-analyzer": "^12.1.6",
"axios": "^0.21.1",
"front-matter-markdown": "^0.4.5",
"install": "^0.13.0",
"multer": "^1.4.2",
"next": "^12.1.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-dropzone": "^11.3.2",
"react-markdown": "^5.0.3",
"react-query": "^3.34.19",
"react-swipeable": "^6.1.0",
"sharp": "^0.28.1",
"tss-react": "^3.6.0",
"yaml-front-matter": "^4.1.1"
},
"devDependencies": {
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.20",
"@types/multer": "^1.4.5",
"@types/node": "^14.14.31",
"@types/sharp": "^0.28.0",
"@types/yaml-front-matter": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"aws-sdk": "^2.883.0",
"babel-plugin-import": "^1.13.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.2.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"typescript": "^4.1.5",
"uuid": "^8.3.2"
}
}