forked from woowacourse/javascript-lotto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 835 Bytes
/
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
{
"name": "javascript-lotto",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "vite build",
"test": "jest --no-cache",
"start-step1": "node src/step1-index.js",
"start-step2": "vite",
"deploy": "vite build --base=/javascript-lotto/ --minify=false && npx gh-pages -d dist"
},
"homepage": "https://{username}.github.io/javascript-lotto",
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.26.7",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"jest": "^29.6.0",
"vite": "^6.0.5"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"engines": {
"npm": ">=10.8.2",
"node": ">=20.17.0"
}
}