-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·72 lines (72 loc) · 2.54 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
66
67
68
69
70
71
72
{
"name": "form-builder-demo",
"version": "1.0.0",
"description": "Form Builder Demo",
"scripts": {
"lint": "eslint .",
"dev": "next",
"build": "next build",
"start": "next start"
},
"author": "Erik Rasmussen",
"license": "ISC",
"dependencies": {
"@babel/register": "^7.12.1",
"@babel/runtime": "^7.12.5",
"final-form": "^4.20.1",
"final-form-arrays": "^3.0.2",
"match-sorter": "^5.0.0",
"next": "^10.0.1",
"parse-json": "^5.1.0",
"react": "^17.0.1",
"react-addons-shallow-compare": "^15.6.2",
"react-callbag-listener": "^1.0.0",
"react-credit-cards": "^0.8.3",
"react-dates": "^21.8.0",
"react-dom": "^17.0.1",
"react-final-form": "^6.5.2",
"react-final-form-arrays": "^3.1.3",
"react-final-form-listeners": "^1.0.0",
"react-fontawesome": "^1.6.1",
"react-select": "^3.1.0",
"react-sortable-hoc": "^1.9.1",
"react-textarea-autosize": "^8.3.0",
"styled-components": "^5.2.1",
"styled-components-theme": "^1.0.5",
"styled-normalize": "^8.0.6"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-do-expressions": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-proposal-export-namespace-from": "^7.12.1",
"@babel/plugin-proposal-function-bind": "^7.12.1",
"@babel/plugin-proposal-function-sent": "^7.12.1",
"@babel/plugin-proposal-json-strings": "^7.12.1",
"@babel/plugin-proposal-logical-assignment-operators": "^7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-numeric-separator": "^7.12.5",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/plugin-proposal-pipeline-operator": "^7.12.1",
"@babel/plugin-proposal-throw-expressions": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.12.1",
"babel-eslint": "^10.0.1",
"babel-plugin-styled-components": "^1.11.1",
"eslint": "^7.13.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"glo": "^2.0.0",
"glow": "^1.2.2",
"prettier": "^2.1.2",
"prettier-eslint-cli": "^5.0.0"
}
}