-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.75 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
{
"name": "react-template",
"version": "0.0.1",
"description": "react template for argo projects",
"private": true,
"source": "src/index.html",
"files": [
"dist",
"CHANGELOG.md"
],
"scripts": {
"start": "parcel --https --no-cache",
"build": "parcel build",
"test": "jest",
"prepare": "is-ci || husky install",
"coverage": "node ./coverage-server.js",
"lint": "eslint \"src/**/*.{js*,ts}\" --fix",
"pretty": "prettier --write \"src/**/*.{js*,ts}\""
},
"author": "Ryan Brogden",
"license": "ISC",
"devDependencies": {
"@argodevops/eslint-config": "^1.2.1",
"@argodevops/semantic-release-teams": "^1.0.17",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@codedependant/semantic-release-docker": "^4.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"commitizen": "^4.3.0",
"css-loader": "^6.7.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.39.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"express": "^4.18.2",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"parcel": "^2.8.3",
"prettier": "^2.8.8",
"semantic-release": "^20.1.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"buffer": "^6.0.3",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.3.1",
"web-vitals": "^3.3.1"
}
}