-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.1 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.1 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
{
"name": "hiddentity",
"version": "0.0.2",
"description": "Hiddentity Platform",
"main": "index.js",
"repository": "https://github.com/hiddentityfr/bird",
"author": "Hiddentity",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx",
"lint-fix": "eslint --fix . --ext .ts,.tsx --max-warnings 0",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.4.11",
"dayjs": "^1.10.7",
"graphql": "^15.5.3",
"moment": "^2.29.1",
"next": "^12.0.2",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dates": "^21.8.0",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-loader-spinner": "^4.0.0",
"react-select": "^4.3.1",
"styled-components": "^5.3.1",
"subscriptions-transport-ws": "^0.9.19",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/moment": "^2.13.0",
"@types/node": "^16.9.1",
"@types/react": "^17.0.21",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dates": "^21.8.3",
"@types/react-dom": "^17.0.9",
"@types/react-loader-spinner": "^4.0.0",
"@types/react-select": "^4.0.17",
"@types/styled-components": "^5.1.14",
"@types/styled-theming": "^2.2.3",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.31.1",
"babel-plugin-styled-components": "^1.13.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.4.0",
"typescript": "^4.4.3",
"typescript-plugin-styled-components": "^2.0.0"
}
}