forked from Laboratoria/curriculum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.69 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.69 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "bootcamp",
"version": "5.5.0",
"description": "Proyectos y tópicos del Bootcamp de @Laboratoria",
"scripts": {
"mdlint": "mdlint .",
"eslint": "eslint topics/",
"test:topics": "mocha './topics/!(node_modules)/**/*.spec.js' --verbose",
"pretest": "npm run mdlint && npm run eslint && npm run validate && npm run test:topics",
"validate": "node ./scripts/build.js --validate",
"build:content": "node ./scripts/build.js",
"changelog": "git log $(git describe --tags --abbrev=0)..HEAD --oneline --format=\"* %h %s (%an)\"",
"create-cohort-project": "node ./scripts/create-cohort-project.js",
"watch": "concurrently ./scripts/watch.js \"react-scripts start\"",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --watchAll=false",
"eject": "react-scripts eject"
},
"repository": "Laboratoria/bootcamp",
"keywords": [
"javascript",
"laboratoria",
"bootcamp",
"curriculum",
"fullstack",
"ux"
],
"author": "Laboratoria <sumate@laboratoria.la> (http://laboratoria.la/)",
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/Laboratoria/bootcamp/issues"
},
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^13.2.1",
"firebase": "^9.14.0",
"highlight.js": "^11.7.0",
"react": "^17.0.2",
"react-ace": "^9.4.4",
"react-dom": "^17.0.2",
"react-intl": "^5.25.1",
"react-router-dom": "^6.4.3",
"react-scripts": "^5.0.1",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@laboratoria/curriculum-parser": "^4.0.0",
"@laboratoria/mdlint": "^1.2.3",
"@octokit/rest": "^19.0.5",
"buffer": "^6.0.3",
"chai": "^4.3.6",
"chokidar": "^3.5.3",
"concurrently": "^7.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"fs-extra": "^10.1.0",
"minimist": "^1.2.7",
"mkdirp": "^1.0.4",
"mocha": "^10.1.0",
"porch": "^1.1.4",
"sinon": "^14.0.2",
"ws": "^8.11.0"
},
"engines": {
"node": ">=16.x"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"coveragePathIgnorePatterns": [
"<rootDir>/src/index.js",
"<rootDir>/src/reportWebVitals.js",
"<rootDir>/src/lib/theme.js"
]
}
}