-
Notifications
You must be signed in to change notification settings - Fork 231
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 834 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 834 Bytes
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.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@types/jest": "^30.0.0",
"babel-jest": "^30.2.0",
"jest": "^30.2.0",
"vite": "^7.3.1"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"engines": {
"npm": ">=10.8.2",
"node": ">=20.17.0"
}
}