-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.02 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
89
90
91
92
93
94
95
96
97
98
{
"name": "cooking-with-amateurs",
"version": "1.1.16",
"description": "Portfolio Web App about Cooking Recipes",
"main": "src/index.js",
"scripts": {
"dev-link": "node dev_tools/link.js",
"dev-front": "webpack-dev-server --config webpack/webpack.dev.js",
"dev-back": "set NODE_ENV=development&& set MONGODB_URL=mongodb://localhost/Tododb&& nodemon server/main.js",
"utest": "jest",
"utest-cover": "jest --coverage",
"ftest-mobile": "cypress run",
"ftest-desktop": "cypress run --config viewportWidth=1000,viewportHeight=1000",
"ftest-core": "cypress-tags run -e TAGS=@core",
"ftest-ui": "cypress open",
"build": "webpack --config webpack/webpack.prod.js",
"start": "set NODE_ENV=production&& node server/main.js",
"dev-start": "set NODE_ENV=production&& set MONGODB_URL=mongodb://localhost/Tododb&& node server/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/m-rec/0a07418b40b5c4e0b00a8bbb05f7c7efd328bf48.git"
},
"author": "Gabriel Romay Machado",
"license": "ISC",
"bugs": {
"url": "https://github.com/W01fw00d/cooking-with-amateurs/issues"
},
"homepage": "https://github.com/W01fw00d/cooking-with-amateurs#readme",
"engines": {
"node": "v16.13.0",
"npm": "8.1.0"
},
"devDependencies": {
"@cypress/webpack-dev-server": "^1.6.0",
"@types/cypress-cucumber-preprocessor": "^4.0.1",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.34",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/react-router-dom": "^5.1.5",
"babel-eslint": "^10.0.3",
"cypress": "^8.7.0",
"cypress-cucumber-preprocessor": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^4.2.1",
"jest": "^25.5.2",
"lint-staged": "^10.0.7",
"nodemon": "^2.0.13",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"typescript": "^3.8.3",
"webpack-dev-server": "^4.3.1"
},
"dependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"acorn": "^8.5.0",
"babel-loader": "^8.1.0",
"chemistry-ui": "^2.4.8",
"express": "^4.17.1",
"mongoose": "^5.9.7",
"react": "^16.13.1",
"react-dom": "^16.8.0",
"react-hot-loader": "^4.12.19",
"react-router-dom": "^5.1.2",
"ts-loader": "^7.0.2",
"webpack": "^5.56.1",
"webpack-cli": "^4.8.0",
"webpack-merge": "^5.8.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint",
"pretty-quick — staged",
"git add"
]
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
}
}