forked from vonschau/next-routes-with-locale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.95 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.6.0",
"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": {
"path-to-regexp": "^3.0.0"
},
"peerDependencies": {
"next": "^8.0.0",
"react": "^16.6.0"
},
"devDependencies": {
"@babel/cli": "^7.4.0",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime-corejs3": "^7.4.0",
"babel-eslint": "^10.0.0",
"babel-jest": "^24.8.0",
"concurrently": "^4.1.0",
"core-js": "^3.0.0",
"coveralls": "^3.0.0",
"del-cli": "^2.0.0",
"eslint": "^5.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-jsx": "^6.0.2",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"next": "^8.0.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-test-renderer": "^16.6.0",
"standard": "^12.0.0"
},
"author": "fridays",
"license": "MIT",
"keywords": [
"next",
"next.js",
"react",
"route",
"router",
"routes",
"routing"
]
}