-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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
{
"name": "javascript-course",
"version": "1.0.0",
"description": "[\"The Complete JavaScript Course 2023: From Zero to Expert!\" course](https://www.udemy.com/course/the-complete-javascript-course/)",
"main": ".eslintrc.js",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"format-check": "npx prettier src --check",
"format-fix": "npx prettier src --write",
"test": "jest",
"test-ci": "jest --config ./jest.config.js --ci --reporters=default --reporters=jest-junit",
"build": "babel src -d lib"
},
"type": "module",
"transform": {
"\\.js$": "<rootDir>/node_modules/babel-jest"
},
"keywords": [],
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/plugin-transform-runtime": "^7.23.4",
"@babel/preset-env": "^7.23.5",
"babel-core": "^4.7.16",
"babel-jest": "^29.7.0",
"babel-plugin-rewire": "^1.2.0",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"fast-check": "^3.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "3.0.2",
"regenerator-runtime": "^0.14.0"
},
"dependencies": {
"@jest/globals": "^29.7.0",
"prompt-sync": "^4.2.0"
}
}