-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.95 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
60
61
62
63
64
{
"name": "anova-test",
"version": "1.0.2",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:integration": "npm test -- --watch -c jest-integration-config.js",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage --no-cache",
"test:coveralls": "npm run test:ci && coveralls < coverage/lcov.info"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@testing-library/react": "^12.1.2",
"@types/axios": "^0.14.0",
"@types/faker": "^5.5.8",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.3.1",
"clean-webpack-plugin": "^4.0.0",
"coveralls": "^3.1.1",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-standard": "^5.0.0",
"faker": "^5.5.3",
"git-commit-msg-linter": "^3.2.8",
"husky": "^4.3.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.5",
"lint-staged": "^11.2.3",
"node-sass": "^6.0.1",
"prettier": "^2.4.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"webpack": "^5.58.1",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1"
},
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "^4.0.0",
"@material-ui/icons": "^4.11.2",
"axios": "^0.21.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0"
}
}