-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.52 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
{
"name": "memup",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "parcel src/index.html",
"clean": "rm -Rf dist .parcel-cache",
"prebuild": "pnpm types && pnpm clean",
"build": "pnpm prebuild && parcel build ./src/index.html",
"build:demo": "pnpm prebuild && parcel build --public-url /memup ./src/index.html",
"prepages": "pnpm build:demo",
"pages": "pnpm prepages && gh-pages -b ghpages -d dist",
"test": "export NODE_OPTIONS=--experimental-vm-modules && pnpm jest",
"test:coverage": "export NODE_OPTIONS=--experimental-vm-modules && pnpm jest --coverage && open coverage/lcov-report/index.html",
"types": "tsc --noEmit",
"nologs": "[ $(git diff \"origin/$(git branch --show)\" | egrep '^[+]' | egrep 'console[.]log' | wc -l) -ge 1 ] && exit 10 || exit 0",
"precommit": "pnpm nologs && pnpm types && pnpm test"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"preset": "ts-jest/presets/default-esm",
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"extensionsToTreatAsEsm": [
".ts",
".tsx"
],
"transform": {}
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.11",
"@mui/material": "^5.14.11",
"@types/luxon": "^3.3.2",
"@types/react-calendar-heatmap": "^1.6.4",
"humanize-duration": "^3.30.0",
"luxon": "^3.4.3",
"nanoid": "^4.0.2",
"react": "^18.2.0",
"react-calendar-heatmap": "^1.9.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.47.0",
"react-router-dom": "^6.16.0",
"string-similarity": "^4.0.4",
"usehooks-ts": "^2.9.1",
"wanakana": "^5.2.0",
"yup": "^0.32.11",
"zustand": "4.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^18.18.3",
"@types/react": "^18.2.24",
"@types/react-dom": "^18.2.8",
"@types/string-similarity": "^4.0.0",
"@types/wanakana": "^4.0.4",
"gh-pages": "^4.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"parcel": "^2.9.3",
"process": "^0.11.10",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
}
}