-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 928 Bytes
/
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
{
"name": "react-pwa-boilerplate",
"version": "1.0.0",
"description": "ReactPWA Minimal boilerplate",
"type": "module",
"scripts": {
"dev": "reactpwa dev",
"build": "reactpwa build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Tirth Bodawala <tirthbodawala@atyantik.com>",
"license": "ISC",
"dependencies": {
"@reactpwa/cli": "^1.0.36-alpha.0",
"@reactpwa/core": "^1.0.36-alpha.0",
"bulma": "^0.9.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"eslint-config-reactpwa": "^1.0.35-alpha.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-testing-library": "^5.9.1",
"pre-commit": "^1.2.2"
},
"pre-commit": {
"run": [
"lint:fix",
"lint"
]
}
}