-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.96 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.96 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
{
"name": "exchange-money",
"version": "0.1.0",
"description": "Exchange your money easily and in an intuitive way.",
"main": "index.js",
"scripts": {
"prettier": "prettier --write .",
"lint": "eslint '**/*.js' --fix",
"start": "razzle start",
"build": "razzle build",
"test": "razzle test --env=jsdom",
"test:watch": "npm run test -- --watch",
"start:prod": "NODE_ENV=production node build/server.js",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samuelsilvadev/exchange-money.git"
},
"author": "Samuel Silva",
"license": "MIT",
"bugs": {
"url": "https://github.com/samuelsilvadev/exchange-money/issues"
},
"homepage": "https://github.com/samuelsilvadev/exchange-money#readme",
"dependencies": {
"classnames": "^2.2.6",
"express": "^4.17.1",
"patch-package": "^6.2.2",
"prop-types": "^15.7.2",
"razzle": "^3.3.7",
"razzle-heroku": "^3.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@testing-library/dom": "^7.26.3",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.0",
"@testing-library/react-hooks": "^3.4.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^10.5.0",
"mutation-observer": "^1.0.3",
"prettier": "^2.1.2",
"react-test-renderer": "^17.0.1"
},
"jest": {
"testEnvironment": "jest-environment-jsdom-sixteen",
"testPathIgnorePatterns": [
"/node_modules/",
"/public/",
"/build/",
"/coverage/"
],
"setupFilesAfterEnv": [
"./tests/setupAfterEnv.js"
],
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
}
}
}