forked from valendres/react-declarative-form
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.06 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.06 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
{
"private": true,
"name": "react-declarative-form",
"description": "Declarative react form validator",
"repository": "valendres/react-declarative-form",
"author": {
"name": "Peter Weller",
"email": "contact@peterweller.com.au",
"url": "https://github.com/valendres"
},
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run --concurrency=1 --stream build",
"lint": "lerna run --concurrency=1 --stream lint",
"start": "lerna run --concurrency=1 --stream start",
"test": "lerna run --concurrency=1 --stream test",
"package": "lerna run --concurrency=1 --stream package",
"precommit": "lerna run --concurrency 1 --stream precommit",
"prepush": "lerna run --concurrency 1 --stream prepush",
"preinstall": "npx use-yarn -m 'Please use yarn!'",
"postinstall": "lerna link",
"transpile": "lerna run --concurrency=1 --stream transpile",
"verify": "lerna run --concurrency=1 --stream verify"
},
"workspaces": [
"packages/*",
"services/*"
],
"husky": {
"hooks": {
"pre-commit": "yarn precommit",
"pre-push": "yarn prepush"
}
},
"devDependencies": {
"@types/enzyme": "3.10.5",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/jest": "25.2.1",
"@types/node": "13.11.0",
"@types/react": "16.9.32",
"@types/react-dom": "16.9.6",
"babel-core": "6.26.3",
"babel-jest": "25.2.6",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"husky": "4.2.3",
"jest": "25.2.7",
"lerna": "3.20.2",
"lint-staged": "10.1.2",
"prettier": "2.0.4",
"rimraf": "3.0.2",
"ts-jest": "25.3.1",
"ts-node": "8.8.2",
"tsconfig-paths": "3.9.0",
"tslint": "6.1.1",
"tslint-config-airbnb": "5.11.2",
"tslint-config-prettier": "1.18.0",
"tslint-react": "4.2.0",
"typescript": "3.8.3"
}
}