-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.6 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
49
50
51
52
{
"name": "@stackcrafters/config-babel",
"description": "A package that provides a base babel configuration, with babel, eslint, prettier, jest",
"version": "0.1.10",
"main": "config/index.js",
"files": [
"/config",
"package.json"
],
"repository": {
"type": "git",
"url": "https://github.com/stackcrafters/config-babel.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "restricted"
},
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.7",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.7",
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@babel/plugin-transform-typescript": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-flow": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/types": "^7.20.7",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.0",
"babel-plugin-source-map-support": "^2.2.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"scripts": {
"update_deps": "npx npm-check-updates -u && npm install && npm update"
}
}