-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
64 lines (64 loc) · 1.82 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-runtime-env",
"version": "0.0.0-development",
"description": "Next.js Runtime Environment Configuration - Populates your environment at runtime rather than build time.",
"main": "build/index.js",
"scripts": {
"lint": "eslint ./src",
"lint:fix": "pnpm lint --fix",
"test": "jest",
"test:coverage": "pnpm test -- --coverage",
"test:watch": "pnpm test -- --maxWorkers=50% --watchAll",
"build": "tsc -p .",
"build:watch": "pnpm build --watch",
"audit-ci": "audit-ci",
"semantic-release": "semantic-release"
},
"keywords": [
"nextjs",
"runtime",
"env",
"runtime env",
"next-runtime-env"
],
"author": "Expatfile.tax LLC",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/expatfile/next-runtime-env.git"
},
"bugs": {
"url": "https://github.com/expatfile/next-runtime-env/issues"
},
"homepage": "https://github.com/expatfile/next-runtime-env#readme",
"dependencies": {
"next": "^14",
"react": "^18"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@types/eslint": "^8.56.10",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/react": "^18",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"audit-ci": "^6.6.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"semantic-release": "^23.1.1",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"next": "^14",
"react": "^18"
}
}