-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 892 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
{
"name": "wallaby-swc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"transpile:babel": "babel ./src/a.spec.ts --out-file out/babel/a.spec.js --source-maps",
"transpile:typescript": "tsc -p .",
"transpile:swc": "swc ./src -d ./out/swc --config-file .swcrc --source-maps true"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@swc/cli": "^0.1.45",
"@swc/core": "^1.2.59",
"@swc/jest": "^0.1.2",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-preset-jest": "^27.0.1",
"jest": "^27.0.4",
"jest-cli": "^27.0.4",
"typescript": "^4.2.4"
}
}