-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.69 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.69 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "soc-admin",
"version": "0.1.0",
"engines": {
"node": "16.x"
},
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"format": "prettier --ignore-path .gitignore --write \"**/*.{js,jsx,ts,tsx,html,json,css,scss,gql}\"",
"lint": "tsc --noEmit && eslint --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore .",
"lintfix": "tsc --noEmit && eslint --fix --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore .",
"release": "node ./scripts/release.js",
"newdb": "node ./scripts/create_db.js",
"test": "jest --coverage"
},
"dependencies": {
"@apollo/client": "^3.2.0",
"@apollo/react-hooks": "^4.0.0",
"@apollo/react-ssr": "^4.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-regular-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.12",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.161",
"@types/luxon": "^1.25.0",
"@types/papaparse": "^5.2.3",
"@types/react-day-picker": "^5.3.0",
"@types/react-select": "^3.0.20",
"@types/react-table": "^7.0.23",
"@types/request-ip": "^0.0.35",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-datasource": "^0.7.2",
"apollo-datasource-rest": "^0.9.3",
"apollo-link-http": "^1.5.17",
"apollo-server": "^2.17.0",
"apollo-server-core": "^2.18.0",
"apollo-server-micro": "^2.17.0",
"axios": "^0.20.0",
"bulma": "^0.9.1",
"cors": "^2.8.5",
"date-fns": "^2.11.1",
"dotenv": "^8.2.0",
"easymde": "^2.12.1",
"graphql": "^15.3.0",
"graphql-scalars": "^1.2.7",
"graphql-tag": "^2.11.0",
"gray-matter": "^4.0.2",
"isomorphic-unfetch": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"keypair": "^1.0.4",
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"micro": "^9.3.4",
"next": "9.5.3",
"nookies": "^2.4.0",
"papaparse": "^5.3.0",
"pg": "^8.3.3",
"pg-native": "^3.0.0",
"printf": "^0.6.0",
"qs": "^6.9.4",
"react": "16.13.1",
"react-bulma-components": "^3.4.0",
"react-day-picker": "^7.4.8",
"react-dom": "16.13.1",
"react-markdown": "^4.3.1",
"react-resize-aware": "^3.0.1",
"react-router-dom": "^5.2.0",
"react-select": "^3.1.0",
"react-simplemde-editor": "^4.1.3",
"react-table": "^7.5.1",
"react-toastify": "^6.0.8",
"remark": "^12.0.0",
"remark-html": "^11.0.1",
"sass": "^1.26.11",
"sequelize": "^6.3.5",
"umzug": "^2.3.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^26.0.13",
"@types/micro-cors": "^0.1.2",
"@types/node": "^14.10.1",
"@types/pg": "^7.14.4",
"@types/react": "^16.9.49",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-ts": "^4.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"typedoc": "^0.19.1",
"typedoc-plugin-external-module-name": "^4.0.3",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
}
}