forked from woowacourse/javascript-racingcar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
42
43
44
45
46
47
48
{
"name": "@woowacourse/javascript-racingcar",
"version": "1.0.0",
"description": "우아한테크코스 웹 프론트엔드 레벨1 자동차 경주 미션",
"main": "src/index.js",
"scripts": {
"start": "npm run build-prod && node dist/bundle.js",
"build-dev": "webpack --mode development",
"build-prod": "webpack --mode production",
"test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/woowacourse/javascript-racingcar.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/woowacourse/javascript-racingcar/issues"
},
"homepage": "https://github.com/woowacourse/javascript-racingcar#readme",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.2.5",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.31.0",
"esm": "^3.2.25",
"jest": "^29.3.1",
"prettier": "^2.8.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"jest": {
"transform": {
"\\.[jt]sx?$": "babel-jest"
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}