-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.79 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
{
"name": "ksearch",
"version": "1.0.0",
"author": "rasreee",
"repository": {
"type": "git",
"url": "https://github.com/rasreee/ksearch.git"
},
"license": "MIT",
"scripts": {
"build": "yarn clean:dist && next build",
"start": "next start",
"dev": "yarn clean && next dev",
"clean": "rm -rf .next node_modules/.cache",
"fix": "yarn lint && yarn format",
"format": "prettier --write '**/*.{json,md,mdx}'",
"lint": "eslint '**/*.{js,jsx,cjs,mjs,ts,tsx}' --fix",
"type-check": "tsc --noEmit --pretty",
"test": "jest --clearCache && NODE_ENV=test jest",
"quality-check": "yarn lint && yarn type-check && yarn test"
},
"dependencies": {
"@emotion/cache": "11.11.0",
"@emotion/react": "11.10.4",
"@emotion/styled": "11.10.4",
"next": "13.4.5",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/faker": "5.5.3",
"@types/jest": "26.0.23",
"@types/jest-expect-message": "1.0.3",
"@types/node": "^17.0.10",
"@types/react": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"dotenv": "^14.2.0",
"eslint": "^8.7.0",
"eslint-config-next": "^12.0.8",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"faker": "5.5.3",
"identity-obj-proxy": "^3.0.0",
"jest": "26.6.3",
"jest-expect-message": "1.0.2",
"jest-extended": "^1.2.0",
"jest-runner-groups": "^2.1.0",
"jest-to-match-shape-of": "^1.3.1",
"prettier": "^2.0.2",
"ts-jest": "26.5.6",
"typescript": "^4.7.4"
}
}