forked from Laboratoria/curriculum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.21 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
100
{
"name": "curriculum",
"version": "8.6.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/sdk-react && ln -s ../../../sdk-react node_modules/@laboratoria/"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@laboratoria/sdk-react": "9.1.1",
"@mui/icons-material": "^5.15.14",
"@mui/material": "^5.15.14",
"@mui/styles": "^5.15.14",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@vitejs/plugin-react": "^4.0.3",
"highlight.js": "^11.9.0",
"react": "^17.0.2",
"react-ace": "^10.1.0",
"react-dom": "^17.0.2",
"react-intl": "^6.6.2",
"react-router-dom": "^6.22.3",
"vite": "^5.2.2",
"web-vitals": "^3.5.2"
},
"devDependencies": {
"@laboratoria/curriculum-parser": "^5.3.0",
"@laboratoria/mdlint": "^1.2.3",
"@octokit/rest": "^20.0.2",
"@sentry/vite-plugin": "^2.16.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.5.2",
"@vitejs/plugin-react": "^4.2.1",
"buffer": "^6.0.3",
"chai": "^4.4.1",
"chokidar": "^3.6.0",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"jsdom": "^24.0.0",
"minimist": "^1.2.8",
"mkdirp": "^3.0.1",
"mocha": "^10.3.0",
"porch": "^2.0.1",
"sinon": "^17.0.1",
"vitest": "^1.4.0",
"ws": "^8.16.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"
]
}
}