-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "mockpress-demo",
"version": "1.0.0",
"description": "demo webpage for mockpress package",
"main": "index.tsx",
"scripts": {
"build": "npx webpack build --env production",
"start": "npx webpack serve",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"homepage": "mockpress.github.io",
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"babel-loader": "^9.0.0",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"mockpress": "^0.1.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@react-icons/all-files": "^4.1.0",
"@types/styled-components": "^5.1.26",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.6"
}
}