forked from githubocto/repo-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 826 Bytes
/
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
{
"scripts": {
"build": "node_modules/.bin/esbuild --target=es2019 ./src/index.jsx --bundle --platform=node --outfile=index.js",
"prepare": "husky install",
"typecheck": "yarn run tsc --noEmit --allowJs",
"test:jest": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test": "npm run test:jest --"
},
"dependencies": {
"@actions/artifact": "^0.5.2",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.0",
"d3": "^7.0.0",
"esbuild": "^0.12.15",
"lodash": "^4.17.21",
"micromatch": "^4.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/micromatch": "^4.0.2",
"husky": "^7.0.0",
"jest": "^27.0.6",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
}
}