-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 KB
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
{
"name": "@stanlemon/react-pouchdb-example",
"version": "0.3.23",
"description": "A react app using pouchdb built in typescript",
"author": "Stan Lemon <stanlemon@users.noreply.github.com",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git@github.com:stanlemon/example-app.git"
},
"scripts": {
"start": "webpack serve",
"build": "NODE_ENV=production webpack",
"tsc": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"engines": {
"node": ">=22.12.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@stanlemon/react-couchdb-authentication": "*",
"@stanlemon/react-pouchdb": "*",
"@stanlemon/webdev": "*",
"bulma": "^1.0.3",
"date-fns": "^4.1.0",
"pouchdb": "^9.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@types/uuid": "^10.0.0",
"identity-obj-proxy": "^3.0.0",
"pouchdb-adapter-memory": "^9.0.0"
}
}