-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.68 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
60
61
62
{
"name": "synonym-search",
"version": "0.1.0",
"private": true,
"bugs": {
"url": "https://github.com/israelias/synonym-search/issues"
},
"license": "UNLICENSED",
"author": {
"name": "Joem Elias Sanez",
"email": "[email protected]"
},
"description": "A Meaningful Thesaurus Web App",
"homepage": "https://github.com/israelias/synonym-search#readme",
"repository": {
"type": "git",
"url": "git://github.com/israelias/synonym-search.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/system": "^4.11.3",
"axios": "^1.4.0",
"clsx": "^2.1.1",
"html-react-parser": "^5.0.11",
"lodash.throttle": "^4.1.1",
"next": "^10.0.6",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-intersection-observer": "^9.5.2"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-react": "^7.22.5",
"acorn": "^8.8.2",
"babel-eslint": "^10.1.0",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.2.0"
},
"resolutions": {
"@babel/core": "7.21.3",
"@babel/types": "7.21.3",
"@babel/traverse": "7.21.3"
},
"engines": {
"node": ">= 10.13 <18"
}
}