forked from facebookexperimental/Recoil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.2 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "recoil",
"private": true,
"description": "Recoil - A state management library for React",
"main": "cjs/index.js",
"module": "es/index.js",
"react-native": "native/index.js",
"unpkg": "umd/index.js",
"files": [
"umd",
"es",
"cjs",
"native",
"index.d.ts"
],
"repository": "https://github.com/facebookexperimental/Recoil.git",
"license": "MIT",
"scripts": {
"prepare": "install-peers",
"build": "node scripts/build.mjs",
"pack": "node scripts/pack.mjs",
"test": "yarn relay && jest packages/*",
"format": "prettier --write \"./**/*.{js,md,json}\"",
"flow": "flow --show-all-errors",
"flow:restart": "flow stop && npm run flow",
"test:typescript": "dtslint typescript",
"lint": "eslint .",
"relay": "relay-compiler",
"deploy-nightly": "yarn build && node scripts/deploy_nightly_build.js"
},
"dependencies": {
"hamt_plus": "1.0.2",
"transit-js": "^0.8.874"
},
"peerDependencies": {
"react": ">=16.13.1"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0",
"@babel/plugin-proposal-optional-chaining": "^7.16.0",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/plugin-transform-flow-strip-types": "^7.16.0",
"@babel/preset-flow": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.2",
"@types/react": ">=18.0.9",
"@types/react-relay": ">=13.0.2",
"@types/relay-runtime": ">=13.0.3",
"babel-jest": "^26.0.1",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-relay": "^13.2.0",
"babel-preset-fbjs": "^3.3.0",
"dtslint": "^4.2.0",
"eslint": "^8.2.0",
"eslint-plugin-fb-www": "^1.11.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-relay": "^1.8.3",
"eslint-plugin-rulesdir": "^0.2.0",
"eslint-plugin-unused-imports": "^2.0.0",
"flow-bin": "0.207.0",
"flow-copy-source": "^2.0.9",
"flow-interfaces-chrome": "^0.6.0",
"flow-typed": "^3.7.0",
"hermes-eslint": "^0.4.8",
"husky": ">=4",
"immutable": "^4.0.0-rc.12",
"install-peers-cli": "^2.2.0",
"jest-cli": "^26.0.1",
"lint-staged": ">=10",
"prettier": "^2.4.1",
"promise-polyfill": "^8.1.3",
"react": ">=16.13.1",
"react-dom": ">=16.13.1",
"react-relay": "^13.2.0",
"relay-compiler": "^13.2.0",
"relay-runtime": "^13.2.0",
"relay-test-utils": "^13.2.0",
"rollup": "^2.10.0",
"rollup-plugin-includepaths": "^0.2.3",
"rollup-plugin-terser": "^5.3.0",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,mjs,md,json}": "prettier --write",
"*.{js,mjs}": "eslint --fix"
}
}