-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.16 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": "vanilla-router",
"version": "1.0.0",
"description": "순수 Javacsript 를 사용하여 간단한 Hash router 를 구현",
"private": true,
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-loader": "^8.1.0",
"css-loader": "^5.0.1",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.2.1",
"style-loader": "^2.0.0",
"webpack": "^5.4.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"browser": {
"crypto": false
},
"scripts": {
"start": "live-server",
"jest": "jest",
"dev": "webpack-dev-server",
"build": "webpack --config webpack.config.js && cp index.html dist/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YoonHan/vanilla-js-router.git"
},
"author": "Yoon Han",
"license": "ISC",
"bugs": {
"url": "https://github.com/YoonHan/vanilla-js-router/issues"
},
"homepage": "https://github.com/YoonHan/vanilla-js-router#readme"
}