-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.16 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
{
"name": "reactzxc",
"version": "1.0.0",
"description": "My sample react version",
"main": "index.js",
"repository": "[email protected]:kozlovzxc/reactzxc.git",
"author": "Kozlov Nikita <[email protected]>",
"license": "MIT",
"scripts": {
"_prettier": "prettier -c src",
"format:check": "yarn _prettier",
"format:fix": "yarn _prettier --write",
"_eslint": "eslint src",
"lint:check": "yarn _eslint",
"lint:fix": "yarn _eslint --fix",
"types:check": "tsc --noEmit _tsc",
"test": "jest",
"check-all": "yarn format:check; yarn lint:check; yarn types:check; yarn test"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-jest": "^27.1.0",
"eslint": "^7.32.0",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"dependencies": {
"@babel/runtime": "^7.15.4"
}
}