-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.65 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
53
54
55
56
{
"name": "torre-mentors",
"version": "1.0.0",
"description": "Search mentors on Torre.co",
"main": "index.html",
"scripts": {
"build": "webpack --mode production",
"builddev": "webpack --mode development",
"eslint": "eslint --ext .js src/ test/",
"htmlhint": "htmlhint src/*.html test/*.html",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:fix:file": "eslint --fix ",
"open-coverage-report": "opener ./coverage/lcov-report/index.html",
"pretest": "npm run eslint && npm run htmlhint",
"start": "serve ./src",
"test": "jest --verbose --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/santiaguf/torre-mentors.git"
},
"keywords": [
"torre.co",
"mentoring"
],
"author": "Santiago Bernal @santiaguf",
"license": "ISC",
"bugs": {
"url": "https://github.com/santiaguf/torre-mentors/issues"
},
"homepage": "https://github.com/santiaguf/torre-mentors#readme",
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"eslint": "^9.0.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-webpack-plugin": "^4.1.0",
"html-loader": "^5.0.0",
"htmlhint": "^1.1.4",
"jest": "^29.7.0",
"json-loader": "^0.5.7",
"opener": "^1.5.2",
"serve": "^14.2.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}