-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.88 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
99
100
101
102
103
104
105
106
107
108
109
{
"name": "book-my-show-app",
"scripts": {
"build": "npx projen build",
"clean": "npx projen clean",
"clobber": "npx projen clobber",
"compile": "npx projen compile",
"default": "npx projen default",
"dist": "npx projen dist",
"dist:analyze": "npx projen dist:analyze",
"dist:dev": "npx projen dist:dev",
"eject": "npx projen eject",
"lint": "npx projen lint",
"lint:css": "npx projen lint:css",
"lint:css:fix": "npx projen lint:css:fix",
"lint:fix": "npx projen lint:fix",
"lint:ts": "npx projen lint:ts",
"lint:ts:fix": "npx projen lint:ts:fix",
"package": "npx projen package",
"post-compile": "npx projen post-compile",
"post-upgrade": "npx projen post-upgrade",
"pre-commit": "npx projen pre-commit",
"pre-compile": "npx projen pre-compile",
"prepare": "npx projen prepare",
"test": "npx projen test",
"test:jest": "npx projen test:jest",
"test:jest:update": "npx projen test:jest:update",
"test:jest:watch": "npx projen test:jest:watch",
"test:types": "npx projen test:types",
"test:types:watch": "npx projen test:types:watch",
"test:update": "npx projen test:update",
"test:watch": "npx projen test:watch",
"upgrade": "npx projen upgrade",
"watch": "npx projen watch",
"projen": "npx projen"
},
"devDependencies": {
"@medly/babel-config-react": "^0.6.0",
"@medly/eslint-config-react": "^0.3.1",
"@medly/jest-config-react": "^0.4.0",
"@medly/prettier-config": "^0.1.1",
"@medly/stylelint-config": "^0.2.0",
"@medly/typescript-config-react": "^1.4.0",
"@medly/webpack-config": "^0.6.0",
"@medlypharmacy/medly-projen": "^3.2.23",
"@testing-library/dom": "^8.13.0",
"@testing-library/react": "^12.2.0",
"@testing-library/user-event": "*",
"@types/react": "17.0.40",
"@types/react-dom": "17.0.13",
"@types/react-redux": "^7.1.24",
"@types/react-router-dom": "^5.3.3",
"@types/redux-mock-store": "^1.0.3",
"@types/styled-components": "^5.1.25",
"axios-mock-adapter": "^1.20.0",
"cross-env": "^7.0.3",
"husky": "^8.0.1",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^12.4.2",
"npm-check-updates": "^12",
"npm-run-all": "^4.1.5",
"projen": "^0.56.33",
"redux-devtools-extension": "^2.13.9",
"redux-mock-store": "^1.5.4",
"rimraf": "^3.0.2"
},
"dependencies": {
"@medly-components/core": "^6.11.2",
"@medly-components/forms": "^2.1.56",
"@medly-components/layout": "^3.2.11",
"@medly-components/loaders": "^1.6.7",
"@medly-components/theme": "^5.0.0",
"@medly-components/utils": "^2.1.1",
"@medlypharmacy/satellite-auth": "^3.0.0",
"axios": "^0.27.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^8.0.2",
"react-router-dom": "^5.3.0",
"redux": "^4.2.0",
"redux-saga": "^1.1.3",
"styled-components": "^5.3.5"
},
"main": "lib/index.js",
"license": "UNLICENSED",
"version": "0.0.0",
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint 'src/**/*.tsx' --fix",
"stylelint 'src/**/*.tsx' --fix"
]
},
"babel": {
"extends": "@medly/babel-config-react"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": "@medly/react",
"ignorePatterns": [
"jest.config.js",
"webpack.config.js"
]
},
"stylelint": {
"extends": "@medly/stylelint-config"
},
"prettier": "@medly/prettier-config",
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
}