forked from MauricioFlorez/boilerplate-application-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
{
"name": "@newfront-insurance/boilerplate-application-form",
"version": "1.0.0",
"description": "Example Next.js app",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"start": "next start",
"build": "next build",
"dev": "next",
"lint": "eslint --ext .ts,.tsx ./src",
"format": "prettier --write ./src",
"compile": "tsc"
},
"dependencies": {
"@reach/rect": "^0.10.3",
"@types/react-image-fallback": "^8.0.1",
"axios": "^0.19.2",
"camel-case": "^4.1.1",
"change-case": "^4.1.1",
"classnames": "^2.2.6",
"date-fns": "^1.30.1",
"file-extension": "^4.0.5",
"formik": "^2.1.4",
"framer-motion": "^1.11.0",
"libphonenumber-js": "^1.7.6",
"lodash": "^4.17.19",
"markdown-to-jsx": "^6.10.3",
"moment": "^2.24.0",
"next": "^9.5.2",
"react": "^16.13.1",
"react-collapsed": "^3.0.0",
"react-dom": "^16.13.1",
"react-image-fallback": "^8.0.0",
"react-number-format": "^4.2.0",
"react-paginate": "^6.3.2",
"react-select": "^3.1.0",
"s-ago": "^2.0.1",
"strip-extension": "^1.1.0",
"styled-components": "^5.1.0",
"tether": "^1.4.6",
"uid": "^1.0.0",
"yup": "^0.29.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@types/node": "^13.9.8",
"@types/react": "^16.9.31",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-jest": "^25.2.4",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"prettier": "2.0.2",
"ts-loader": "^7.0.4",
"typescript": "^3.8.3"
}
}