-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.86 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.86 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
{
"name": "react-template-stub",
"version": "1.0.0",
"description": "",
"main": "src/index.tsx",
"scripts": {
"build": "rm -rf ./build && webpack --mode production",
"dev": "webpack-dev-server --mode development",
"lint": "eslint --quiet --ext .tsx,.ts,.js .",
"pre:commit": "lint-staged --",
"pre:push": "npm run build && npm run typechecking && npm run test -- --no-coverage",
"test": "jest",
"test:watch": "jest --watch --no-coverage",
"typechecking": "tsc --noEmit"
},
"repository": {
"type": "git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/plugin-proposal-decorators": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"@types/react-test-renderer": "^17.0.1",
"babel-cli": "^6.26.0",
"babel-jest": "^27.5.1",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^3.4.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^3.2.0",
"husky": "3.0.5",
"jest": "^27.5.1",
"lint-staged": "^8.2.1",
"path": "^0.12.7",
"react-test-renderer": "^17.0.2",
"style-loader": "^1.1.3",
"ts-loader": "^8.3.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-notifier": "^1.8.0"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.14.3",
"html-loader": "^0.5.5",
"mobx": "^6.4.2",
"mobx-react": "^7.3.0",
"prettier": "^1.18.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}