This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.58 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": "react-runtime-config",
"version": "3.0.2",
"description": "Provide a typesafe runtime configuration inside a react app",
"repository": {
"type": "git",
"url": "[email protected]:contiamo/react-runtime-config.git"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"start": "jest --watch",
"test": "jest",
"build": "tsc -p tsconfig.package.json",
"prepublishOnly": "yarn test --ci && yarn build",
"format": "eslint src/*.{ts,tsx} --fix && prettier src/*.{ts,tsx,json} --write"
},
"keywords": [
"typescript",
"react",
"config",
"configuration",
"runtime"
],
"author": "Fabien Bernard <[email protected]>",
"license": "MIT",
"devDependencies": {
"@testing-library/react-hooks": "^5.1.1",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.168",
"@types/react": "^16.14.4",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^26.5.3",
"ts-mockery": "^1.2.0",
"typescript": "^4.2.4"
},
"dependencies": {
"lodash": "^4.17.21"
},
"peerDependencies": {
"react": ">=16"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testMatch": [
"**/*.test.ts"
]
}
}