-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "next-quick-link",
"version": "1.0.0",
"description": "Nextjs effective prefetch bundle",
"author": "Jungwoo An <[email protected]>",
"license": "MIT",
"main": "./dist/next-link.js",
"module": "./dist/next-link.es.js",
"types": "./dist/index.d.ts",
"scripts": {
"build:prod": "rollup --environment NODE_ENV:production --config",
"build": "npm run build:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jungwoo-An/next-link.git"
},
"bugs": {
"url": "https://github.com/Jungwoo-An/next-link/issues"
},
"homepage": "https://github.com/Jungwoo-An/next-link#readme",
"devDependencies": {
"@types/next": "^8.0.3",
"@types/react": "^16.8.10",
"@typescript-eslint/eslint-plugin": "^1.5.0",
"@typescript-eslint/parser": "^1.5.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"next": "^8.0.3",
"react": "^16.8.5",
"rollup": "^1.2.3",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.20.1",
"typescript": "^3.3.4000"
},
"dependencies": {
"cross-env": "^5.2.0"
}
}