-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.6 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.6 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
{
"name": "meomoc",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"populate:post": "ts-node ./scripts/populatePosts"
},
"dependencies": {
"@fortawesome/fontawesome-pro": "^6.0.0-beta2",
"@fortawesome/fontawesome-svg-core": "^1.3.0-beta2",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/pro-duotone-svg-icons": "^6.0.0-beta2",
"@fortawesome/pro-light-svg-icons": "^6.0.0-beta2",
"@fortawesome/pro-regular-svg-icons": "^6.0.0-beta2",
"@fortawesome/pro-solid-svg-icons": "^6.0.0-beta2",
"@fortawesome/pro-thin-svg-icons": "^6.0.0-beta2",
"@fortawesome/react-fontawesome": "^0.1.15",
"@prisma/client": "^3.1.1",
"axios": "^0.21.4",
"classnames": "^2.3.1",
"dotenv": "^10.0.0",
"mongodb": "^4.1.2",
"next": "11.1.2",
"next-absolute-url": "^1.2.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"redux-saga": "^1.1.3",
"sass": "^1.42.1",
"swr": "^1.0.1"
},
"devDependencies": {
"@babel/helper-module-imports": "^7.15.4",
"@types/react": "17.0.24",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-plugin-macros": "^3.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-next": "11.1.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prisma": "^3.1.1",
"ts-node": "^10.2.1",
"typescript": "4.4.3"
}
}