forked from Laboratoria/curriculum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.18 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
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
94
95
96
97
98
99
{
"name": "curriculum",
"version": "7.0.0",
"description": "Proyectos y tópicos del curriculum del Bootcamp de @Laboratoria",
"repository": "Laboratoria/curriculum",
"keywords": [
"javascript",
"laboratoria",
"bootcamp",
"curriculum",
"fullstack",
"ux"
],
"author": "Laboratoria <[email protected]> (http://laboratoria.la/)",
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/Laboratoria/curriculum/issues"
},
"scripts": {
"mdlint": "mdlint .",
"eslint": "eslint topics/",
"test:topics": "mocha './topics/!(node_modules)/**/*.spec.js' --verbose",
"test:scripts": "mocha './scripts/test/*.spec.mjs' --verbose",
"pretest": "npm run mdlint && npm run eslint && npm run validate && npm run test:topics",
"validate": "node ./scripts/build.mjs --validate",
"build:content": "node ./scripts/build.mjs",
"changelog": "git log $(git describe --tags --abbrev=0)..HEAD --oneline --format=\"* %h %s (%an)\"",
"create-cohort-project": "node ./scripts/create-cohort-project.mjs",
"watch": "concurrently ./scripts/watch.mjs \"npm start\"",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run ./src/components/**/*.spec.jsx",
"link-parser": "rm -rf node_modules/@laboratoria/curriculum-parser && ln -s ../../../curriculum-parser node_modules/@laboratoria/",
"link-react": "rm -rf node_modules/@laboratoria/react && ln -s ../../../react node_modules/@laboratoria/"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@laboratoria/react": "7.0.0-beta.11",
"@mui/icons-material": "^5.14.6",
"@mui/material": "^5.14.6",
"@mui/styles": "^5.14.6",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^13.5.0",
"@vitejs/plugin-react": "^4.0.3",
"highlight.js": "^11.8.0",
"react": "^17.0.2",
"react-ace": "^10.1.0",
"react-dom": "^17.0.2",
"react-intl": "^6.4.4",
"react-router-dom": "^6.15.0",
"vite": "^4.4.9",
"web-vitals": "^3.4.0"
},
"devDependencies": {
"@laboratoria/curriculum-parser": "^5.0.0-beta.0",
"@laboratoria/mdlint": "^1.2.3",
"@octokit/rest": "^19.0.13",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"@vitejs/plugin-react": "^4.0.4",
"buffer": "^6.0.3",
"chai": "^4.3.8",
"chokidar": "^3.5.3",
"concurrently": "^8.2.0",
"dotenv": "^16.3.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"jsdom": "^22.1.0",
"minimist": "^1.2.8",
"mkdirp": "^3.0.1",
"mocha": "^10.2.0",
"porch": "^2.0.1",
"sinon": "^15.2.0",
"vitest": "^0.34.3",
"ws": "^8.13.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"
]
}
}