-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.15 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
{
"name": "react-use-controllable-state",
"version": "0.0.8",
"description": "React hook for using controllable state",
"main": "dist/index.js",
"repository": "[email protected]:alirezamirian/react-use-controllable-state.git",
"author": "Alireza Mirian <[email protected]>",
"license": "MIT",
"files": [
"dist",
"src",
"index.d.ts"
],
"keywords": [
"react",
"react-hooks",
"use-controlled-state",
"use-controllable-state"
],
"scripts": {
"clean": "rimraf lib dist es coverage",
"test": "jest --no-cache -u",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"format": "prettier --write 'src/**/*.tsx'",
"format:check": "prettier --list-different 'src/**/*.tsx'",
"lint": "eslint src test"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/enzyme": "^3.1.18",
"@types/jest": "^24.0.6",
"@types/mocha": "^5.2.6",
"@types/node": "^11.9.5",
"@types/react": "^16.7.22",
"@types/react-dom": "^16.8.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"cross-env": "^5.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-jsx": "^6.0.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.1.3",
"jest": "^24.1.0",
"prettier": "^1.14.3",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"rimraf": "^2.6.2",
"ts-jest": "^24.0.0",
"typescript": "^3.3.1"
},
"peerDependencies": {
"react": ">=16.7.0-alpha.1"
},
"husky": {
"hooks": {}
}
}