-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 2 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
{
"name": "react-vitae",
"version": "1.0.9",
"description": "Build a personal resume in seconds with JSON resumes and React",
"repository": {
"type": "git",
"url": "git+https://github.com/Minivera/react-vitae.git"
},
"bugs": {
"url": "https://github.com/Minivera/react-vitae/issues"
},
"homepage": "https://github.com/Minivera/react-vitae#readme",
"scripts": {
"build:dev": "ts-node ./scripts/build.ts .",
"build:prod": "ts-node ./scripts/build.ts . --production",
"build:dts": "dts-bundle-generator -o dist/index.d.ts src/index.ts",
"build": "rm -rf dist && npm run build:dev && npm run build:dts",
"lint": "eslint --ext .jsx --ext .js --ext .tsx --ext .ts src/",
"prepublishOnly": "npm run build",
"test": "jest",
"test:coverage": "jest --coverage",
"clean": "git clean -fdX ."
},
"keywords": [
"react",
"resume",
"json-resume"
],
"main": "dist/index.esm.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"author": "Guillaume St-Pierre",
"license": "MIT",
"peerDependencies": {
"react": ">=17"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.5",
"@types/yargs": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"cross-env": "^7.0.3",
"dts-bundle-generator": "^8.0.1",
"esbuild": "^0.19.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"yargs": "^17.7.2"
}
}