-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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
{
"name": "next-env-loader",
"version": "1.0.0",
"description": "Load custom .env files depending on your environment in Next.js",
"keywords": [
"next.js",
"next",
"dotenv",
".env"
],
"homepage": "https://github.com/v3ron/next-env-loader#readme",
"bugs": {
"url": "https://github.com/v3ron/next-env-loader/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/v3ron/next-env-loader.git"
},
"author": "Szymon Chmal <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle --output dist/index.js --format cjs",
"format": "prettier --write .",
"lint": "eslint .",
"prepare": "husky install"
},
"dependencies": {
"dotenv": "^16.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@types/node": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"microbundle": "^0.15.0",
"next": "^12.1.6",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2",
"typescript": "^4.7.2"
},
"peerDependencies": {
"next": ">=11.0.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,md}": "prettier --write"
},
"publishConfig": {
"access": "public"
}
}