-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.35 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "toy-robot-cli",
"version": "1.0.0",
"license": "MIT",
"bin": "./build/cli.js",
"engines": {
"node": ">=8"
},
"scripts": {
"dev": "pastel dev",
"build": "pastel build",
"prepare": "pastel build",
"test": "jest",
"postinstall": "patch-package"
},
"files": [
"build"
],
"dependencies": {
"figures": "^3.0.0",
"final-form": "^4.15.0",
"ink": "^3.0.8",
"ink-select-input": "^4.2.0",
"ink-text-input": "^4.0.1",
"pastel": "^1.1.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-final-form": "^6.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(js|jsx|json)": [
"prettier --write",
"git add"
],
"README.md": [
"doctoc --maxlevel 3 --notitle",
"git add"
]
},
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.8.0",
"doctoc": "^1.4.0",
"husky": "^2.4.1",
"ink-testing-library": "^2.1.0",
"jest": "^24.8.0",
"lint-staged": "^8.2.1",
"patch-package": "^6.1.2",
"postinstall-postinstall": "^2.0.0",
"prettier": "^1.18.2",
"react-hooks-testing-library": "^0.5.1",
"react-test-renderer": "^16.8.6"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
]
}
}