-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "final-project",
"version": "1.0.0",
"description": "An image recognition program that finds face(s) in an image.",
"private": true,
"main": "app.bundle.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"watch": "webpack --watch",
"start": "webpack-dev-server --open"
},
"author": "Daniel Schimanski",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/pro-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"clarifai": "^2.9.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-parallax-tilt": "^1.3.41",
"react-particles-js": "^3.2.0",
"react-tilt": "^0.1.4"
},
"devDependencies": {
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.7",
"@types/webpack-env": "^1.15.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.5.3",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.2.1",
"react-devtools": "^4.6.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.2.1",
"ts-loader": "^7.0.1",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}