-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.69 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.69 KB
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
{
"name": "webeleon-next-starter",
"author": "Webeleon",
"contributors": [
{
"name": "julien prugne",
"email": "julien@webeleon.dev"
},
{
"name": "@erikdstock"
}
],
"license": "MIT",
"version": "2.3.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:all": "yarn lint && yarn type-check && yarn test",
"test:coverage": "jest --coverage",
"prepare": "husky install",
"release": "standard-version"
},
"lint-staged": {
"*.@(ts|tsx)": [
"npm run lint",
"npm run format"
]
},
"dependencies": {
"i18next": "21.5.4",
"next": "11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-i18next": "11.14.3",
"sass": "1.44.0",
"validator": "13.7.0"
},
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@testing-library/react": "12.1.2",
"@types/jest": "27.0.3",
"@types/node": "14.17.34",
"@types/react": "17.0.37",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-jest": "27.4.2",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-react": "7.27.1",
"husky": "7.0.4",
"identity-obj-proxy": "3.0.0",
"jest": "27.4.3",
"jest-watch-typeahead": "1.0.0",
"lint-staged": "11.2.6",
"prettier": "2.5.0",
"standard-version": "9.3.2",
"typescript": "4.5.2"
}
}