forked from Ecehuh67/Calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.71 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
{
"name": "calculater",
"version": "1.0.0",
"description": "This thing is an attempt to create a calculator with help of React for practising skills",
"main": "index.js",
"scripts": {
"eslint": "npm run eslint.ts && npm run eslint.js",
"eslint.js": "eslint --ext .jsx --ext .js src/",
"eslint.ts": "eslint --config .eslintrc-ts.yml --ext .tsx src/",
"build": "webpack --mode production",
"start": "webpack-dev-server",
"test": "npm run eslint && npm run test.jest",
"test.jest": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Ecehuh67/Calculator.git"
},
"keywords": [
"react",
"react-hocks"
],
"author": "Tertunov Kirill",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ecehuh67/Calculator/issues"
},
"homepage": "https://github.com/Ecehuh67/Calculator#readme",
"dependencies": {
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.0",
"@babel/preset-react": "7.9.4",
"@types/jest": "25.2.1",
"@types/react": "16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-test-renderer": "16.9.2",
"@typescript-eslint/eslint-plugin": "2.29.0",
"@typescript-eslint/parser": "2.29.0",
"babel-jest": "25.4.0",
"babel-loader": "8.1.0",
"eslint": "6.8.0",
"eslint-config-htmlacademy": "0.5.2",
"eslint-plugin-react": "7.19.0",
"jest": "25.4.0",
"prettier": "2.0.5",
"react-test-renderer": "16.13.1",
"ts-jest": "25.4.0",
"ts-loader": "7.0.1",
"typescript": "3.8.3",
"utility-types": "3.10.0",
"webpack": "4.42.1",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3"
}
}