-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.68 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "clean-react",
"author": "Isaque igor",
"description": "NodeJs Rest API using TDD, Clean Architecture and Typescript",
"version": "1.6.1",
"main": "index.js",
"scripts": {
"start": "node index",
"dev:base": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"dev": "npm run dev:base -- --open",
"test": "cross-env NODE_ICU_DATA=node_modules/full_icu jest --passWithNoTests --no-cache --runInBand",
"test:watch": "npm test -- --watch",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"test:coveralls": "npm run test:ci && coveralls < coverage/lcov.info",
"test:cypress": "cypress open",
"check": "npm-check -u -s"
},
"keywords": [],
"license": "ISC",
"devDependencies": {
"@cypress/webpack-preprocessor": "^5.4.6",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.0.1",
"@types/axios": "^0.14.0",
"@types/faker": "^5.1.2",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"cypress": "^5.3.0",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jsx-a11y": "6.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "^4.1.2",
"faker": "^5.1.0",
"favicons-webpack-plugin": "^4.2.0",
"full-icu": "^1.3.1",
"git-commit-msg-linter": "^2.4.2",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"jest-localstorage-mock": "^2.4.3",
"lint-staged": "^10.2.2",
"mini-css-extract-plugin": "^1.3.1",
"node-sass": "^4.14.1",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"ts-jest": "^26.4.0",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.4"
},
"dependencies": {
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0"
}
}