-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.97 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.97 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
{
"name": "my-resume",
"description": "My résumé",
"packageManager": "yarn@4.5.0+sha224.e38a15ab6bfde21fc4f3b1cd1a56357ab64e902ba2ab76179f9cf36e",
"scripts": {
"start": "node --experimental-json-modules scripts/dev-watch.mjs",
"build": "node --experimental-json-modules scripts/prod-build.mjs",
"deploy": "yarn build && yarn test && git add index.html dist/ && git commit && git push",
"postinstall": "node --experimental-json-modules scripts/dev-generate-toml-interop-files.mjs",
"test": "node --unhandled-rejections=strict scripts/test.js dist/",
"prettify": "node scripts/pretty-toml.mjs src/data"
},
"author": "Antoine du HAMEL",
"license": "CC-BY-NC-ND-4.0",
"homepage": "https://aduh95.github.io/",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.24",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"balloon-css": "^1.0.0"
},
"engines": {
"node": ">=20.0.0",
"yarn": "4.x"
},
"private": true,
"type": "module",
"devDependencies": {
"@aduh95/async-jsx": "^0.2.0-0",
"@aduh95/jsx-fontawesome": "^0.1.6",
"@aduh95/toml": "^0.4.2",
"@aduh95/toml-prettifier": "^1.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-sucrase": "5.0.1",
"@types/react": "^17.0.18",
"cssnano": "^7.0.0",
"cssnano-preset-advanced": "^7.0.0",
"jsdom": "^25.0.0",
"pdf-parse": "1.1.1",
"postcss": "^8.1.7",
"puppeteer": "^23.0.1",
"rollup": "^3.0.6",
"sass": "^1.22.12",
"svgo": "^3.0.0",
"terser": "^5.2.0",
"typescript": "^5.0.0",
"ws": "^8.2.0"
},
"resolutions": {
"@rollup/plugin-sucrase@4.0.1": "patch:@rollup/plugin-sucrase@npm:4.0.1#.yarn/patches/@rollup-plugin-sucrase-npm-4.0.1-4a1e7679d7",
"prop-types": "patch:prop-types@npm:15.7.2#.yarn/patches/prop-types-npm-15.7.2-d7a04f2274",
"pdf-parse@1.1.1": "patch:pdf-parse@npm:1.1.1#.yarn/patches/pdf-parse-npm-1.1.1-04a6109b2a"
}
}