-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "rff-cli-example",
"description": "An example of how to use 🏁 React Final Form in a CLI application with Ink",
"version": "1.0.0",
"license": "MIT",
"bin": "./build/cli.js",
"engines": {
"node": ">=8"
},
"scripts": {
"dev": "pastel dev",
"build": "pastel build",
"prepare": "pastel build"
},
"author": "Erik Rasmussen <[email protected]> (http://github.com/erikras)",
"repository": {
"type": "git",
"url": "https://github.com/final-form/rff-cli-example.git"
},
"bugs": {
"url": "https://github.com/final-form/rff-cli-example/issues"
},
"homepage": "https://github.com/final-form/rff-cli-example#readme",
"files": [
"build"
],
"dependencies": {
"final-form": "^4.12.0",
"http-client": "^4.3.1",
"ink": "^2.1.1",
"ink-multi-select": "^1.0.3",
"ink-select-input": "^3.1.0",
"ink-spinner": "^3.0.1",
"ink-text-input": "^3.1.1",
"isomorphic-fetch": "^2.2.1",
"pasteljs": "^1.0.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-final-form": "^4.1.0",
"semver": "^6.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-react-app": "^4.0.0",
"eslint-plugin-flowtype": "^3.7.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0"
}
}