-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.12 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
{
"name": "portfolio",
"version": "1.0.0",
"main": "index.js",
"author": "ShatterPlayer <shatterplayer@gmail.com>",
"license": "MIT",
"private": true,
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@types/styled-components": "^5.1.25",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.5.0",
"typescript": "^4.6.4",
"url-loader": "^4.1.1",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0",
"workbox-webpack-plugin": "^6.5.4"
},
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack-dev-server --port 3000 --mode=development --devtool=inline-source-map",
"type-check": "tsc --noEmit"
},
"dependencies": {
"axios": "^0.27.2",
"framer-motion": "^6.3.4",
"preact": "^10.10.0",
"styled-components": "^5.3.5"
}
}