-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·66 lines (66 loc) · 2.57 KB
/
package.json
File metadata and controls
executable file
·66 lines (66 loc) · 2.57 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
{
"name": "usetheform-workspace",
"version": "1.0.0",
"description": "React library for composing declarative forms in React and managing their state.",
"repository": {
"type": "git",
"url": "git+https://github.com/iusehooks/usetheform.git"
},
"homepage": "https://iusehooks.github.io/usetheform",
"workspaces": {
"packages": [
"workspaces/usetheform",
"workspaces/docs"
],
"nohoist": [
"**/react",
"**/react-dom"
]
},
"private": true,
"scripts": {
"docs:build": "yarn workspace docs build",
"docs:serve": "yarn workspace docs serve",
"docs:dev": "yarn workspace docs start",
"build": "yarn workspace usetheform run build",
"build:dev": "yarn workspace usetheform run build:dev",
"lint": "yarn workspace usetheform run lint",
"test": "yarn workspace usetheform run test",
"test:watch": "yarn workspace usetheform test --watch",
"test:cov": "yarn workspace usetheform test --coverage",
"coveralls": "yarn workspace usetheform test --coverage && cat ./workspaces/usetheform/coverage/lcov.info | coveralls",
"dev": "rimraf dev coverage && concurrently \"yarn build:dev\" \"browser-sync start --server examples --ss workspaces/usetheform/dev --files workspaces/usetheform/dev --files examples\"",
"cy:open": "npx cypress open",
"cy:run": "npx cypress run --headless",
"cy:server:dev": "rimraf dev build coverage && concurrently \"yarn build:dev\" \"browser-sync start --no-ui --no-ghost-mode --no-open --port 3000 --server cypress/server --ss workspaces/usetheform/dev --files workspaces/usetheform/dev --files cypress/server\"",
"cy:server": "rimraf dev build coverage && yarn build && browser-sync start --no-ui --no-open --no-ghost-mode --port 3000 --server cypress/server --ss workspaces/usetheform/build/umd"
},
"author": "Antonio Pangallo (https://github.com/antoniopangallo)",
"license": "MIT",
"devDependencies": {
"@babel/types": "7.16.0",
"babel-plugin-lodash": "3.3.4",
"browser-sync": "^3.0.4",
"child_process": "^1.0.2",
"concurrently": "^5.3.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.3",
"cypress": "14.3.0",
"cypress-file-upload": "5.0.8",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.6",
"prettier": "^2.2.1",
"rimraf": "^3.0.2"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"packageManager": "yarn@3.6.4"
}