-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "squawk-react",
"version": "4.5.0",
"description": "Squawk is a support library for handling global state in React applications",
"main": "dist/Squawk.js",
"types": "dist/Squawk.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/johnstrand/squawk-react"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc",
"eslint": "eslint \"src/**/*.ts{,x}\"",
"eslint:fix": "eslint --fix \"src/**/*.ts{,x}\"",
"prettier": "prettier --check \"src/**/*.ts{,x}\"",
"prettier:fix": "prettier --write \"src/**/*.ts{,x}\""
},
"author": "John Strand",
"license": "MIT",
"peerDependencies": {
"@types/react": ">=16.8.10",
"react": ">=16.8.6",
"typescript": ">=3.9.2"
},
"devDependencies": {
"@types/react": "^16.8.10",
"@typescript-eslint/eslint-plugin": "3.6.1",
"@typescript-eslint/parser": "3.6.1",
"eslint": "7.4.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-immutable": "1.0.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-only-warn": "1.0.2",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.3",
"eslint-plugin-react-hooks": "4.0.8",
"eslint-plugin-simple-import-sort": "5.0.3",
"eslint-plugin-unused-imports": "0.1.3",
"prettier": "2.0.5",
"react": "^16.8.6",
"typescript": "^3.9.2"
}
}