-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.81 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
{
"name": "16bit-recruitment-task",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest & cypress run",
"test:watch": "jest --watch & cypress run --watch",
"typecheck": "tsc",
"cypress": "cypress open"
},
"dependencies": {
"@atlaskit/button": "^15.1.5",
"@atlaskit/css-reset": "^6.0.5",
"@atlaskit/datetime-picker": "^10.0.10",
"@atlaskit/form": "^8.2.2",
"@atlaskit/modal-dialog": "^11.2.8",
"@atlaskit/spinner": "^15.0.6",
"@atlaskit/textarea": "^4.0.2",
"@atlaskit/textfield": "^5.0.1",
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@types/react-input-mask": "^3.0.0",
"email-validator": "^2.0.4",
"next": "10.0.9",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-input-mask": "^2.0.4",
"react-storage-hooks": "^4.0.1",
"sass": "^1.32.8",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@testing-library/react": "^11.2.5",
"@types/faker": "^5.1.7",
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"cypress": "^6.8.0",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"faker": "^5.4.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"typescript": "^4.2.3",
"typescript-plugin-css-modules": "^3.2.0"
}
}