-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.38 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
{
"name": "nextjs-redux-sentence-game",
"version": "0.0.1",
"description": "NextJS TypeScript Redux Sentence Game",
"scripts": {
"start": "NODE_ENV=production PORT=$PORT next start",
"build": "rm -rf .next && next build",
"dev": "next dev",
"export": "npm run build && next export",
"prettier": "prettier --write **/*.{ts,tsx,js}",
"lint:ts": "npm run prettier && eslint --fix 'src/**/*.{ts,tsx}'",
"lint:scss": "stylelint --fix 'src/**/*.scss'",
"lint:types": "tsc -p . --noEmit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run lint:types",
"pre-push": "npm run test",
"post-merge": "sh hooks/post-merge.sh",
"post-rewrite": "sh hooks/post-merge.sh"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.scss": [
"stylelint --fix"
]
},
"author": "DaniilKashcheev",
"license": "ISC",
"dependencies": {
"@chakra-ui/react": "^1.8.8",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@redux-devtools/extension": "^3.2.2",
"framer-motion": "^6",
"next": "12.1.0",
"next-redux-wrapper": "7.0.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "7.2.6",
"redux": "4.1.2",
"redux-devtools-extension": "2.13.9",
"redux-thunk": "2.4.1",
"svg-sprite-loader": "6.0.8"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@types/node": "13.9.5",
"@types/react": "18.0.1",
"@types/react-redux": "7.1.7",
"@types/svg-sprite-loader": "3.9.3",
"@typescript-eslint/eslint-plugin": "5.6.0",
"@typescript-eslint/parser": "5.6.0",
"acorn": "7.1.1",
"babel-core": "6.26.3",
"babel-jest": "25.2.4",
"babel-loader": "8.1.0",
"babel-plugin-module-resolver": "4.0.0",
"eslint": "7.17.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.0",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.2.3",
"identity-obj-proxy": "3.0.0",
"lint-staged": "10.1.0",
"postcss-preset-env": "6.7.0",
"postcss-scss": "4.0.2",
"prettier": "2.0.2",
"sass": "1.44.0",
"stylelint": "14.1.0",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-recommended": "6.0.0",
"stylelint-scss": "4.0.1",
"svgo": "1.3.2",
"svgo-loader": "2.2.1",
"typescript": "4.3.4"
}
}