This repository has been archived by the owner on Feb 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.68 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
{
"name": "unstated-x",
"version": "1.0.1",
"description": "Add more powers to unstated",
"main": "lib/unstated.js",
"module": "lib/unstated.es.js",
"types": "lib/unstated.d.ts",
"repository": "https://github.com/paul-phan/unstated-x.git",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"clean": "rm -rf lib",
"build": "rollup -c && flow-copy-source src lib && cp src/unstated.d.ts lib/unstated.d.ts",
"typecheck": "flow",
"test": "jest",
"format": "prettier --write **/*.{js,json,md}",
"prepublish": "yarn clean && yarn build",
"precommit": "lint-staged",
"example": "parcel example/index.html",
"typescript": "tsc -p tsconfig.json"
},
"dependencies": {},
"peerDependencies": {
"react": "^16.14.0"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"@babel/preset-flow": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.15.3",
"@types/react": "^17.0.17",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.2.2",
"flow-bin": "^0.157.0",
"flow-copy-source": "^2.0.9",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jsdom": "^16.7.0",
"lint-staged": "^11.1.2",
"parcel-bundler": "^1.12.5",
"prettier": "^2.3.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rollup": "^2.56.2",
"rollup-plugin-babel": "^4.4.0",
"typescript": "^4.3.5"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
}
}