-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.83 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
{
"name": "sample-eil",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"prepare": "husky install"
},
"dependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"axios": "^0.27.2",
"eos-icons": "^5.4.0",
"eos-icons-react": "^2.3.0",
"i": "^0.3.7",
"js-cookie": "^3.0.1",
"next": "12.1.6",
"prismjs": "^1.28.0",
"react": "18.1.0",
"react-color": "^2.19.3",
"react-dom": "^18.1.0",
"react-gtm-module": "^2.0.11",
"react-helmet": "^6.1.0",
"react-hot-toast": "^2.2.0",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"react-svg": "^15.1.1",
"sass": "^1.53.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/js-cookie": "^3.0.2",
"@types/node": "^17.0.35",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.9",
"@types/react-color": "^3.0.6",
"@types/react-helmet": "^6.1.5",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"husky": "^8.0.0",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
}
}