-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.93 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
{
"name": "crewtimer-points",
"version": "1.0.23",
"description": "Calculate points for CrewTimer",
"main": "./dist/cjs/src/index.js",
"module": "./dist/esm/src/index.js",
"types": "./dist/esm/src/index.d.ts",
"scripts": {
"build": "rm -rf dist && yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"clean": "rm -rf dist .parcel-cache",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run prettier && npm run lint",
"start": "parcel src/example/index.html"
},
"keywords": [
"react",
"crewtimer"
],
"author": "Glenn Engel (glenne)",
"license": "MIT",
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.0",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^29.5.0",
"parcel": "^2.8.3",
"prettier": "^2.8.4",
"process": "^0.11.10",
"ts-jest": "^29.1.0",
"tslib": "^2.5.0",
"typescript": "^5.0.2"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/lab": "^5.0.0-alpha.124",
"@mui/material": "^5.11.13",
"@mui/styles": "^5.11.13",
"crewtimer-common": "^1.0.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-usedatum": "^1.0.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crewtimer/crewtimer-points.git"
},
"files": [
"dist",
"LICENSE",
"README.md"
]
}