-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.17 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
{
"name": "professional-javascript-platzi",
"version": "1.0.0",
"description": "Platzi Course",
"main": "",
"scripts": {
"start": "live-server",
"lint-ts": "eslint . --ext .ts",
"lint-js": "eslint . --ext .js",
"lint-ts-and-fix": "eslint . --ext .ts --fix",
"lint-js-and-fix": "eslint . --ext .js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UltiRequiem/Professional-JavaScript-Platzi.git"
},
"keywords": [
"Platzi"
],
"author": "UltiRequiem",
"license": "MIT",
"bugs": {
"url": "https://github.com/UltiRequiem/Professional-JavaScript-Platzi/issues"
},
"homepage": "https://github.com/UltiRequiem/Professional-JavaScript-Platzi#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"live-server": "^1.2.2",
"parcel-bundler": "^1.12.5",
"prettier": "^2.6.2",
"prettier-eslint": "^15.0.0",
"prettier-plugin-jsdoc": "^0.3.38"
}
}