-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "react-otus-homework",
"version": "1.0.2",
"description": "",
"main": "lesson2/index.js",
"scripts": {
"build": "npx webpack --mode production",
"calc": "npx ts-node src/lesson2",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "https://github.com/Vladimir2308/react-otus-homework.git"
},
"author": "Vladimir Sushchen",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"babel-jest": "^25.2.4",
"babel-loader": "^8.1.0",
"core-js": "^3.18.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.26.1",
"fs": "0.0.1-security",
"html-webpack-plugin": "^4.0.3",
"jest": "^25.2.4",
"prettier": "^2.0.2",
"readline": "^1.3.0",
"ts-node": "^8.8.2",
"typescript": "^3.9.10",
"util": "^0.12.4",
"webpack": "^5.19.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {},
"exclude": [
"node_modules",
"lib",
"tests"
],
"browser": {
"fs": false,
"path": false,
"os": false
}
}