-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.22 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "supportal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 8001",
"build": "next build",
"start": "next start",
"test": "jest",
"build-static": "next build && next export"
},
"dependencies": {
"@ewarren/persist": "^0.3.12",
"@svgr/webpack": "^4.3.3",
"@tinymce/tinymce-react": "^3.5.0",
"@zeit/next-css": "^1.0.1",
"amazon-cognito-identity-js": "^3.2.0",
"aws-amplify": "^1.2.4",
"axios": "^0.21.1",
"babel-plugin-styled-components": "^1.10.6",
"date-fns": "^2.8.0",
"date-fns-tz": "^1.0.9",
"dotenv": "^8.2.0",
"formik": "^2.0.6",
"iframe-resizer": "^4.2.9",
"js-cookie": "^2.2.1",
"localforage": "^1.7.3",
"lodash": "^4.17.15",
"next": "9.1.0",
"next-offline": "^4.0.6",
"papaparse": "^5.1.1",
"polished": "^3.4.2",
"prop-types": "^15.7.2",
"react": "16.10.2",
"react-dom": "16.10.2",
"react-focus-on": "^3.3.0",
"react-input-mask": "^2.0.4",
"react-select": "^3.0.8",
"react-transition-group": "^4.3.0",
"shortid": "^2.2.15",
"styled-components": "^4.4.1",
"tinymce": "^5.2.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.3.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-in-case": "^1.0.2",
"jest-styled-components": "^6.3.4",
"lint-staged": "^9.4.3",
"postcss-preset-env": "^6.7.0",
"prettier": "^1.19.1",
"react-test-renderer": "^16.12.0",
"stylelint": "^11.0.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^3.1.1",
"stylelint-processor-styled-components": "^1.8.0",
"tailwindcss": "^1.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"stylelint",
"git add"
]
}
}