-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 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
39
40
41
42
43
44
{
"name": "toy-react-router",
"version": "1.0.5",
"description": "react-router-dom clone for practice making library",
"module": "dist/Router.js",
"main": "dist/Router.js",
"types": "dist/Router.d.ts",
"scripts": {
"start": "webpack serve --config ./webpack.config.js",
"build": "babel src/Router.tsx --out-dir dist --extensions \".ts,.tsx\" && tsc"
},
"keywords": [
"react",
"router",
"typescript"
],
"author": "GleamingStar (tjdduddl10@gmail.com)",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.11",
"babel-loader": "^8.2.2",
"html-webpack-plugin": "^5.3.2",
"styled-components": "^5.3.0",
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.3.5"
},
"repository": {
"type": "git",
"url": "https://github.com/GleamingStar/toy-react-router"
}
}