-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.57 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.57 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
71
72
73
74
75
76
77
78
79
80
{
"name": "clean-react",
"version": "1.8.0",
"main": "index.js",
"author": "Matheus Sunderhus <matheus.sunderhus@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node index",
"dev:base": "webpack-dev-server --config webpack.dev.js",
"dev": "yarn dev:base -- --open",
"build": "webpack --config webpack.prod.js",
"test": "cross-env NODE_ICU_DATA=node_modules/full-icu jest --passWithNoTests --no-cache --runInBand",
"test:watch": "yarn test -- --watch --color",
"test:staged": "yarn test -- --findRelatedTests",
"test:ci": "yarn test -- --coverage",
"test:cypress": "yarn run cypress open",
"test:cypress:record": "yarn run cypress run",
"test:cypress:ci": "yarn run cypress run",
"test:coveralls": "yarn test:ci && coveralls < coverage/lcov.info",
"check": "npx npm-check -u -s"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "5.10.0",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.0.0",
"@types/axios": "0.14.0",
"@types/faker": "5.5.7",
"@types/jest": "26.0.23",
"@types/node": "16.0.0",
"@types/react": "17.0.14",
"@types/react-dom": "17.0.9",
"@types/react-router-dom": "5.1.8",
"@typescript-eslint/eslint-plugin": "4.28.2",
"clean-webpack-plugin": "4.0.0-alpha.0",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"css-loader": "4.3.0",
"cypress": "9.1.1",
"eslint": "7.30.0",
"eslint-config-standard-with-typescript": "11",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-standard": "5.0.0",
"faker": "5.5.3",
"fibers": "5.0.1",
"full-icu": "1.4.0",
"git-commit-msg-linter": "3.2.6",
"html-webpack-plugin": "5.5.0",
"husky": "4.3.0",
"identity-obj-proxy": "3.0.0",
"jest": "27.0.6",
"jest-localstorage-mock": "2.4.14",
"lint-staged": "11.0.0",
"loader-utils": "2.0.0",
"mini-css-extract-plugin": "2.6.0",
"sass": "1.49.9",
"sass-loader": "12.6.0",
"style-loader": "2.0.0",
"ts-jest": "27.0.3",
"ts-loader": "8.0.2",
"typescript": "4.3.5",
"webpack": "5.70.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0",
"webpack-merge": "5.8.0"
},
"dependencies": {
"axios": "0.21.2",
"express": "4.17.3",
"express-history-api-fallback": "2.2.1",
"npm-check": "5.9.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-flip-move": "3.0.4",
"react-router-dom": "5.3.0"
}
}