-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathpackage.json
81 lines (81 loc) · 2.31 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
{
"name": "resume-builder",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci",
"lint:js": "eslint ."
},
"dependencies": {
"@tippyjs/react": "^4.0.0",
"bootstrap": "^4.4.1",
"chrome-aws-lambda": "^9.1.0",
"deep-equal": "^2.0.1",
"downloadjs": "^1.4.7",
"gsap": "^3.2.6",
"mongodb": "^3.6.6",
"next": "^10.1.2",
"prettier": "^2.0.5",
"puppeteer": "^8.0.0",
"react": "16.13.1",
"react-beautiful-dnd": "^13.0.0",
"react-bootstrap": "^1.0.1",
"react-dom": "16.13.1",
"react-redux": "^7.2.0",
"react-switch": "^5.0.1",
"react-tippy": "^1.3.4",
"react-toastify": "^5.5.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"sass": "^1.26.3",
"styled-components": "^5.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^10.0.1",
"@types/downloadjs": "^1.4.1",
"@types/gsap": "^1.20.2",
"@types/node": "^13.9.2",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"@types/styled-components": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.5",
"jest": "^25.1.0",
"jest-styled-components": "^7.0.0",
"lint-staged": "^10.2.11",
"react-test-renderer": "^16.13.1",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {}
},
"lint-staged": {
"*.{js,ts,tsx}": "yarn lint:js --fix"
}
}