forked from Tech-Deal/Tech-Deal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.71 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
{
"name": "tech-deal",
"version": "1.0.0",
"description": "PM Final Project Cohort 4",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"lint": "eslint . --fix",
"start": "next start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Johndev85/Tech-Deal.git"
},
"keywords": [
"React",
"JavaScript",
"Search",
"Comparator"
],
"author": "Tech-Deal Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/Johndev85/Tech-Deal/issues"
},
"homepage": "https://github.com/Johndev85/Tech-Deal#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.30",
"@fortawesome/free-brands-svg-icons": "5.14.0",
"@fortawesome/free-solid-svg-icons": "5.14.0",
"@fortawesome/react-fontawesome": "0.1.11",
"axios": "0.20.0",
"bcrypt": "5.0.0",
"formik": "2.1.5",
"jwt-decode": "3.0.0",
"next": "10.0.0",
"react": "17.0.1",
"react-dom": "16.13.1",
"yup": "0.29.3"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-prettier": "6.12.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-standard": "4.0.2",
"prettier": "2.1.2",
"sass": "1.26.11"
},
"standard": {
"ignore": [
"/api/**"
]
},
"eslintConfig": {
"extends": [
"./node_modules/standard/eslintrc.json"
]
}
}