-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "next-universal-route",
"version": "1.9.9",
"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": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^27.5.0",
"@types/lru-cache": "^7.6.1",
"@types/next": "^9.0.0",
"@types/node": "^17.0.31",
"@types/path-to-regexp": "^1.7.0",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"jest": "^28.0.3",
"jest-environment-jsdom": "^28.0.2",
"prettier": "^2.6.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.1",
"tslint": "^6.1.3",
"tslint-react": "^5.0.0",
"typescript": "^4.6.4"
},
"dependencies": {
"path-to-regexp": "^6.2.0",
"qs": "^6.10.3"
}
}