-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.36 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
{
"name": "build-resume",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:noWatch": "jest --watch=false",
"test:coverage": "jest --coverage --watchAll=false",
"lint:fix": "next lint --fix",
"prepare": "husky install",
"format": "prettier --write \"**/*.+(js|jsx|json|css|md|tsx|ts)\"",
"lint-staged": "lint-staged --config lint-staged.config.js"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.15",
"@chakra-ui/react": "^1.6.9",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"framer-motion": "^4.1.17",
"html2canvas": "^1.3.2",
"jspdf": "^2.4.0",
"next": "11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"babel-jest": "^27.2.5",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"husky": "^7.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.5",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"react-test-renderer": "^17.0.2"
}
}