-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.23 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
{
"name": "book-list",
"version": "1.5.0",
"description": "a little program for keeping track of the books you have and want",
"scripts": {
"build": "mkdir -p dist; npm run --silent build:version && npm run --silent build:ts && npm run --silent build:react",
"build:react": "parcel build --no-cache --dist-dir dist/ src/index.html src/404.html src/img/icon.svg",
"build:ts": "tsc",
"build:version": "( /bin/echo -n 'version: '; node -p -e 'require(`./package.json`).version'; /bin/echo -n 'date: '; date; /bin/echo -n 'git sha: '; git rev-parse HEAD; ) > dist/version.txt",
"start": "npm run serve",
"serve": "NODE_ENV=development PORT=8080 parcel serve --no-hmr --no-cache --dist-dir dist/ src/index.html",
"test": "npm run --silent lint && jest",
"lint": "echo lint javascript && npm run --silent lint:js && echo lint css && npm run --silent lint:css",
"lint:js": "eslint src server --ext .js,.json,.ts,.tsx",
"lint:css": "stylelint 'src/**/*.css' 'src/**/*.html'",
"postinstall": "(cd server; npm ci)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacekkopecky/book-list.git"
},
"author": "Jacek Kopecky <jacek@jacek.cz>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jacekkopecky/book-list/issues"
},
"homepage": "https://github.com/jacekkopecky/book-list#readme",
"type": "module",
"devDependencies": {
"@auth0/auth0-react": "^2.2.4",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.15.10",
"@mui/styles": "^5.15.10",
"@parcel/packager-raw-url": "^2.11.0",
"@parcel/resolver-default": "^2.11.0",
"@parcel/service-worker": "^2.11.0",
"@parcel/transformer-webmanifest": "^2.11.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.4.0",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-portsoc-ts": "github:portsoc/eslint-config-portsoc-ts#update-to-eslint-8",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jsdom": "^21.1.0",
"parcel": "^2.11.0",
"postcss-html": "^1.5.0",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.22.1",
"react-router-dom": "^6.22.1",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^29.0.0",
"typescript": "^4.9.5"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-react",
"@babel/preset-typescript"
]
},
"nodemonConfig": {
"ignore": [
"dist/*",
"dist-ts/*"
],
"ext": "js,ts,tsx,json",
"delay": 2500
},
"@parcel/runtime-js": {
"splitManifestThreshold": 100000000
}
}