-
Notifications
You must be signed in to change notification settings - Fork 168
/
package.json
41 lines (41 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
40
41
{
"name": "javascript-lotto",
"version": "1.0.0",
"description": "우아한테크코스 웹 프론트엔드 레벨1 로또 미션",
"license": "MIT",
"scripts": {
"test": "jest --watch --no-cache",
"build-step1": "webpack --config step1.config.js",
"start-step1": "npm run build-step1 && node dist/step1-bundle.js",
"start-step2": "webpack serve --open --config step2.config.js"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.2.5",
"jest": "^29.3.1",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"css-loader": "^6.6.0",
"style-loader": "^3.3.1",
"eslint": "^8.31.0",
"prettier": "^2.8.2",
"esm": "^3.2.25",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.7.4"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}