-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.7 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
83
84
85
86
87
88
{
"name": "stocks",
"version": "1.0.0",
"description": "> A calogue build with React and Redux.",
"main": "index.js",
"scripts": {
"babel": "babel src -d dist",
"build": "webpack --mode development",
"build:watch": "webpack -w --mode development",
"build:prod": "webpack --mode production",
"go": "webpack-dev-server --host 0.0.0.0 --port 7000",
"stylelint": "npx stylelint ./src/css/*.{css,scss}",
"lint": "npx eslint ./*.js",
"eslint": "npx eslint ./src/**/*.js",
"eslint2": "npx eslint ./test/*.js",
"test": "jest test",
"start": "node server.js",
"heroku-postbuild": "webpack --mode development",
"e2e": "cypress run",
"cypress crome": "cypress run -browser chrome",
"cypress": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SevlaMare/Catalogue.git"
},
"author": "Thiago Miranda",
"license": "MIT",
"bugs": {
"url": "https://github.com/SevlaMare/Catalogue/issues"
},
"homepage": "https://github.com/SevlaMare/Catalogue#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.1.0",
"css-loader": "^4.3.0",
"css-minimizer-webpack-plugin": "^1.1.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^2.5.1",
"file-loader": "^6.1.0",
"html-loader": "^1.3.0",
"html-webpack-plugin": "^4.4.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"mini-css-extract-plugin": "^0.11.2",
"sass": "^1.26.10",
"sass-loader": "^10.0.2",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-csstree-validator": "^1.8.0",
"stylelint-scss": "^3.17.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"cypress": "^5.4.0"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"express": "^4.17.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"regenerator-runtime": "^0.13.7"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
}
},
"directories": {
"doc": "doc",
"test": "test"
}
}