forked from LuudJanssen/next-locale-router
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.22 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
{
"name": "@luudjanssen/next-locale-router",
"version": "1.4.0",
"private": false,
"license": "UNLICENSED",
"repository": "https://github.com/luudjanssen/next-locale-router",
"author": "Luud Janssen",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"clean": "rm -rf lib",
"format": "prettier . --write",
"postversion": "git push && git push --tags",
"preversion": "yarn clean && yarn build",
"start": "tsc --watch"
},
"peerDependencies": {
"next": "10.2.0",
"react": "*",
"react-dom": "*"
},
"dependencies": {
"chalk": "^4.1.1",
"express": "^4.17.1",
"find-up": "^5.0.0",
"lodash": "^4.17.21",
"negotiator": "^0.6.2",
"validator": "^13.6.0"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/lodash": "^4.14.170",
"@types/negotiator": "^0.6.1",
"@types/node": "^14.17.2",
"@types/react": "^16.14.8",
"@types/react-dom": "^16.9.13",
"@types/validator": "^13.1.3",
"next": "10.2.0",
"prettier": "^2.3.0",
"prettier-plugin-organize-imports": "^2.1.0",
"prettier-plugin-package": "^1.3.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"typescript": "^4.3.2"
},
"sideEffects": false
}