-
Notifications
You must be signed in to change notification settings - Fork 5
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",
"compile": "lerna run --concurrency=1 --stream compile",
"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",
"verify": "lerna run --concurrency=1 --stream verify"
},
"workspaces": [
"packages/*",
"services/*"
],
"husky": {
"hooks": {
"pre-commit": "yarn precommit",
"pre-push": "yarn prepush"
}
},
"devDependencies": {
"@babel/core": "7.15.0",
"@babel/runtime": "7.14.8",
"@types/enzyme": "3.10.9",
"@types/node": "16.4.12",
"@types/react": "17.0.15",
"@types/react-dom": "17.0.9",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.3",
"babel-jest": "27.0.6",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"husky": "7.0.1",
"jest": "27.0.6",
"lerna": "4.0.0",
"lint-staged": "11.1.1",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"ts-jest": "27.0.4",
"ts-node": "10.1.0",
"tsconfig-paths": "3.10.1",
"tslint": "6.1.3",
"tslint-config-airbnb": "5.11.2",
"tslint-config-prettier": "1.18.0",
"tslint-react": "5.0.0",
"typescript": "4.3.5"
}
}