-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.26 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.26 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
{
"name": "@muritavo/react-mini-toolkit",
"version": "0.2.1",
"description": "A toolkit with scripts of stuff I'm tired of copy/pasting or implementing from start",
"main": "index.js",
"repository": "git@github.com:Muritavo/react-mini-toolkit.git",
"author": "Murilo Oliveira de Araujo <murilo.araujo@vortigo.com.br>",
"license": "MIT",
"bin": "dist/index.js",
"dependencies": {
"@types/inquirer": "^7.3.1",
"@types/node": "^16.6.1",
"commander": "^7.2.0",
"cross-env": "^7.0.3",
"debug": "^4.3.1",
"husky": "^6.0.0",
"inquirer": "^8.0.0",
"jest": "^27.0.6",
"ts-jest": "^27.0.4",
"typescript": "~4.6"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"pretestRun": "tsc",
"testRun": "cross-env DEBUG=* node ./dist/index.js",
"prepublish": "tsc",
"prevalidate": "tsc",
"test": "jest",
"test:watch": "jest --watchAll",
"validate": "node ./dist/scripts/checkReleaseNotes.js"
},
"devDependencies": {
"@material-ui/core": "^4.12.4",
"@testing-library/react": "^11.2.6",
"@types/jest": "^27.0.1",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"cypress": "^10.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^6.0.4"
}
}