-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "google-translate-clone",
"version": "0.0.1",
"description": "Google Translate Clone using NextJS and Reactstrap",
"license": "MIT",
"author": "Christianto Chen",
"homepage": "https://github.com/christiantochen/google-translate-clone.git#readme",
"keywords": [
"NextJS",
"ReactJS",
"Reacstrap",
"Bootstrap5",
"GoogleTranslate"
],
"repository": {
"type": "git",
"url": "git+https://github.com/christiantochen/google-translate-clone.git"
},
"bugs": {
"url": "https://github.com/christiantochen/google-translate-clone/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"bootstrap": "^5.1.3",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"lodash.debounce": "^4.0.8",
"next": "12.0.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"reactstrap": "^9.0.1"
},
"devDependencies": {
"@types/lodash.debounce": "^4.0.6",
"@types/node": "16.11.10",
"@types/react": "17.0.36",
"eslint": "7.32.0",
"eslint-config-next": "12.0.4",
"prettier": "^2.4.1",
"sass": "^1.43.4",
"typescript": "4.5.2"
}
}