forked from daviseford/aos-reminders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 4.48 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
110
111
112
113
114
115
116
117
118
119
120
{
"name": "aos-reminders",
"version": "5.1.8",
"private": true,
"homepage": "./",
"dependencies": {
"@auth0/auth0-react": "1.9.0",
"@reduxjs/toolkit": "1.8.0",
"@stripe/react-stripe-js": "1.7.0",
"@stripe/stripe-js": "1.24.0",
"bootstrap": "4.6.0",
"core-js": "3.21.1",
"deepmerge": "4.2.2",
"jspdf": "1.5.3",
"lodash": "4.17.21",
"luxon": "2.3.1",
"node-sass": "5.0.0",
"parse5": "6.0.1",
"pdfjs-dist": "2.4.456",
"qs": "6.10.3",
"react": "17.0.2",
"react-beautiful-dnd": "13.1.0",
"react-bootstrap": "1.6.4",
"react-copy-to-clipboard": "5.0.4",
"react-dom": "17.0.2",
"react-dropzone": "11.5.1",
"react-ga": "3.3.0",
"react-icons": "4.3.1",
"react-modal": "3.14.4",
"react-redux": "7.2.6",
"react-router-dom": "5.3.0",
"react-scripts": "4.0.3",
"react-select": "5.2.2",
"react-switch": "6.0.0",
"redux": "4.1.2",
"redux-persist": "6.0.0",
"string.prototype.matchall": "4.0.6",
"superagent": "7.1.1"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"build": "react-app-rewired build",
"format": "yarn prettier --write \"**/*.*(js|jsx|ts|tsx)\"",
"gitclean:win": "git branch | %{ $_.Trim() } | ?{ $_ -ne 'master' } | %{ git branch -D $_ }",
"gitclean": "git branch | grep -v \"master\" | xargs git branch -D",
"intake:win": "ts-node-dev --respawn --compiler-options \"{ \"\"module\"\": \"\"commonjs\"\"}\" --transpile-only -r tsconfig-paths/register src/utils/dev/intakeTests.ts",
"intake": "ts-node-dev --respawn --compiler-options '{ \"module\": \"commonjs\"}' --transpile-only -r tsconfig-paths/register src/utils/dev/intakeTests.ts",
"pruneTests:win": "ts-node-dev --respawn --compiler-options \"{ \"\"module\"\": \"\"commonjs\"\"}\" --transpile-only -r tsconfig-paths/register src/utils/dev/pruneTests.ts",
"pruneTests": "ts-node-dev --respawn --compiler-options '{ \"module\": \"commonjs\"}' --transpile-only -r tsconfig-paths/register src/utils/dev/pruneTests.ts",
"lint": "eslint --max-warnings 0 --ext ts,tsx src",
"start": "react-app-rewired start",
"test": "react-app-rewired test",
"up": "yarn install && yarn upgrade-interactive --latest",
"verify:win": "ts-node-dev --compiler-options \"{ \"\"module\"\": \"\"commonjs\"\"}\" --respawn --transpile-only -r tsconfig-paths/register src/utils/dev/verify.ts",
"verify": "ts-node-dev --compiler-options '{ \"module\": \"commonjs\"}' --respawn --transpile-only -r tsconfig-paths/register src/utils/dev/verify.ts",
"xlsx:win": "ts-node-dev --compiler-options \"{ \"\"module\"\": \"\"commonjs\"\"}\" --respawn --transpile-only -r tsconfig-paths/register src/utils/dev/exportToSheet.ts",
"xlsx": "ts-node-dev --compiler-options '{ \"module\": \"commonjs\"}' --respawn --transpile-only -r tsconfig-paths/register src/utils/dev/exportToSheet.ts"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"husky": {
"hooks": {
"pre-commit": "node clean.js && pretty-quick --staged --pattern \"**/*.*(ts|tsx)\""
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 edge version",
"last 1 explorer version",
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/jest": "26.0.23",
"@types/jspdf": "1.3.3",
"@types/lodash": "4.14.179",
"@types/luxon": "2.3.0",
"@types/node": "17.0.21",
"@types/parse5": "6.0.3",
"@types/pdfjs-dist": "2.7.1",
"@types/qs": "6.9.7",
"@types/react": "17.0.40",
"@types/react-beautiful-dnd": "13.1.2",
"@types/react-copy-to-clipboard": "5.0.2",
"@types/react-dom": "17.0.13",
"@types/react-modal": "3.13.1",
"@types/react-redux": "7.1.23",
"@types/react-router-dom": "5.3.2",
"@types/superagent": "4.1.15",
"@types/webpack-env": "1.16.3",
"babel-jest": "26.6.3",
"husky": "4.3.8",
"prettier": "2.5.1",
"prettier-plugin-organize-imports": "2.3.4",
"pretty-quick": "3.1.3",
"react-app-rewired": "2.1.11",
"replace-in-file": "6.3.2",
"source-map-explorer": "2.5.2",
"ts-node-dev": "1.1.8",
"tsconfig-paths": "3.13.0",
"typescript": "4.6.2",
"workbox-core": "6.5.1",
"workbox-expiration": "6.5.1",
"workbox-precaching": "6.5.1",
"workbox-routing": "6.5.1",
"workbox-strategies": "6.5.1",
"xlsx": "0.17.5"
}
}