-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.04 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": "cases",
"version": "1.0.0",
"description": "<h1>CASES</h1>",
"main": "main.js",
"type": "module",
"scripts": {
"build": "webpack --mode=development",
"test": "jest",
"start": "nodemon start.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebAxol/CASES.git"
},
"author": "Gabrel Fuente",
"license": "MIT",
"bugs": {
"url": "https://github.com/WebAxol/CASES/issues"
},
"homepage": "https://github.com/WebAxol/CASES#readme",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"babel": "^6.23.0",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.2",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.85.1",
"webpack-cli": "^5.1.3"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"json",
"node"
]
},
"dependencies": {
"@babel/cli": "^7.20.7",
"@babel/node": "^7.20.7"
}
}