forked from fridays/next-routes
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
76 lines (76 loc) · 1.96 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
{
"name": "next-routes-with-locale",
"version": "1.8.5",
"description": "Easy to use locale-based dynamic routes for Next.js",
"repository": "vonschau/next-routes-with-locale",
"main": "dist",
"files": [
"dist"
],
"scripts": {
"lint": "standard 'src/*' 'test/*'",
"build": "del dist/* && babel src -d dist",
"prepublishOnly": "npm run test",
"pretest": "npm run lint && npm run build",
"test": "npm run testOnly",
"testOnly": "jest \\.test.js --coverage",
"testCI": "npm run test && cat coverage/lcov.info | coveralls",
"dev": "concurrently -k 'npm run build -- -w' 'npm run testOnly -- --watch'"
},
"standard": {
"parser": "babel-eslint"
},
"jest": {
"roots": [
"test/",
"dist/"
]
},
"dependencies": {
"@babel/runtime-corejs3": "^7.12.5",
"core-js": "^3.7.0",
"path-to-regexp": "^6.2.0"
},
"peerDependencies": {
"next": "^10.0.2",
"react": "^17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.12.7",
"@babel/core": "^7.12.7",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"concurrently": "^5.3.0",
"coveralls": "^3.1.0",
"del-cli": "^3.0.1",
"eslint": "^7.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-standard": "^4.1.0",
"jest": "^26.6.3",
"next": "^10.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"standard": "^16.0.3"
},
"author": "fridays",
"license": "MIT",
"keywords": [
"next",
"next.js",
"react",
"route",
"router",
"routes",
"routing"
]
}