-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.6 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.6 KB
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
{
"name": "strictly-formed",
"version": "0.3.2",
"description": "statically typed forms for typescript",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"test": "jest",
"lint": "eslint \"src/**/**.{ts,tsx}\"",
"check": "tsc --noEmit",
"validate": "npm run lint && npm run check && npm run test",
"format": "prettier \"src/**/**.{ts,tsx}\" --write",
"clean": "rm -rf ./dist && rm -rf .parcel-cache",
"dev": "npm run clean && parcel 'example/index.html'",
"build": "npm run clean && parcel build",
"deploy:prerelease": "npm run validate && npm version prerelease && npm run build && npm publish && git push --follow-tags",
"deploy:patch": "npm run validate && npm version patch && npm run build && npm publish && git push --follow-tags",
"deploy:minor": "npm run validate && npm version minor && npm run build && npm publish && git push --follow-tags",
"deploy:major": "npm run validate && npm version major && npm run build && npm publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sayari-analytics/strictly-formed.git"
},
"keywords": [
"typescript",
"react",
"form"
],
"peerDependencies": {
"react": ">=17.0",
"react-dom": ">=17.0",
"react-redux": "^7.2.8",
"redux": "^4.1.2"
},
"author": "James Conkling <james.lane.conkling@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/sayari-analytics/strictly-formed/issues"
},
"homepage": "https://github.com/sayari-analytics/strictly-formed#readme",
"devDependencies": {
"@parcel/packager-ts": "^2.4.1",
"@parcel/transformer-typescript-types": "^2.4.1",
"@redux-devtools/extension": "^3.2.2",
"@testing-library/react": "^12.1.5",
"@types/jest": "^27.4.1",
"@types/ramda": "^0.28.1",
"@types/react": "^17.0.40",
"@types/react-dom": "^18.0.0",
"@types/react-redux": "^7.1.23",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.5.1",
"parcel": "^2.4.1",
"prettier": "^2.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.8",
"redux": "^4.1.2",
"redux-observable": "^2.0.0",
"rxjs": "^7.5.5",
"styled-components": "^5.3.5",
"ts-jest": "^27.1.4",
"typescript": "^4.6.2"
}
}