-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.85 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.85 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "math",
"version": "1.0.0",
"description": "",
"main": "index.tsx",
"scripts": {
"dev": "webpack serve --open",
"start": "webpack --watch",
"build": "webpack --mode production",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StarzJulia/math.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/StarzJulia/math/issues"
},
"homepage": "https://github.com/StarzJulia/math#readme",
"dependencies": {
"@testing-library/react": "^12.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/runtime": "^7.16.3",
"@types/fork-ts-checker-webpack-plugin": "^0.4.5",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.10",
"@types/react": "^17.0.36",
"@types/react-dom": "^17.0.11",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^4.5.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"babel-loader": "^8.2.3",
"eslint": "^8.3.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"fork-ts-checker-webpack-plugin": "^6.4.0",
"jest": "^27.4.3",
"path": "^0.12.7",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"webpack": "^5.64.3",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}