-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.51 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.51 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
{
"name": "CleanReact",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "npm test -- --watch",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/faker": "^5.5.8",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.1",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^6.6.0",
"eslint": "^6.8.0",
"eslint-config-standard-with-typescript": "^11.0.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-standard": "^4.0.1",
"faker": "^5.5.3",
"git-commit-msg-linter": "^3.2.8",
"husky": "^7.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.6",
"lint-staged": "^11.1.2",
"node-sass": "^7.0.1",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"typescript": "^4.3.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"axios": "^0.25.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}