forked from brajevicm/next-universal-route
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.54 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
{
"name": "next-universal-route",
"version": "1.0.0",
"description": "Universal Next.js Route",
"main": "./cjs/index.js",
"module": "./es/index.js",
"modules.root": "./es",
"types": "./cjs/index.d.ts",
"author": "Miloš Brajević <[email protected]>",
"repository": "brajevicm/next-universal-route",
"license": "MIT",
"scripts": {
"lint": "tslint -c tslint.json --project tsconfig.json",
"test": "jest --config jest.config.json && codecov",
"test:watch": "jest --config jest.config.json --watchAll",
"build": " rimraf ./dist && npm run build:es && npm run build:cjs",
"build:es": "tsc --module es2015 --target es5 --outDir es",
"build:cjs": "tsc --module commonjs --target es5 --outDir cjs"
},
"keywords": [
"react",
"next",
"nextjs",
"express",
"node",
"universal",
"routes",
"router",
"route",
"routing",
"ssr",
"server-rendering"
],
"devDependencies": {
"@types/jest": "^24.0.20",
"@types/next": "^8.0.6",
"@types/path-to-regexp": "^1.7.0",
"@types/qs": "^6.5.3",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"jest": "^24.9.0",
"next": "^9.1.1",
"prettier": "^1.18.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-react": "^4.1.0",
"typescript": "^3.6.4"
},
"peerDependencies": {
"next": ">=2",
"react": "^15.4.2 || ^16"
},
"dependencies": {
"path-to-regexp": "^3.1.0",
"qs": "^6.9.0"
}
}