-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1012 Bytes
/
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
{
"name": "cmyk-lime",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"svg-to-jsx": "svgr < svgr/icon_about.svg > components/aboutIcon.js -svgo-config svgr/svgo.json --replace-attr-values '#8582B3={props.color}'"
},
"dependencies": {
"@use-gesture/react": "*",
"framer-motion": "^4.1.17",
"next": "11.1.1",
"next-images": "^1.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"svg-to-jsx": "^1.0.3"
},
"devDependencies": {
"@svgr/cli": "^5.5.0",
"@svgr/webpack": "^5.5.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.1",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "2.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"next lint '*/**/*.{js,jsx}' --fix"
]
}
}