generated from hhimanshu/create-react-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 3.03 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
96
97
98
99
{
"name": "@bonsaiilabs/create-pwa-app",
"version": "0.0.0-development",
"description": "A React Starter to develop Progressive Web Applications (PWA) and deploy to Google Play Store",
"bin": "./bin/setup-project.js",
"scripts": {
"test": "jest --config jest.config.ts",
"test:watch": "jest --watchAll --config jest.config.ts",
"start": "webpack serve --open --config webpack.dev.js ",
"start:prod": "npx -y serve -s dist",
"build": "rm -rf dist && webpack --config webpack.prod.js",
"generateAssetLinks": "ts-node scripts/generateAssetLinks.ts",
"build-for-pwa": "yarn build && yarn generateAssetLinks",
"create:start:prod": "yarn build && yarn start:prod",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"format": "prettier --write .",
"postinstall": "npx husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/hhimanshu/create-pwa-app"
},
"keywords": [
"react",
"reactjs",
"typescript",
"progressive web app",
"pwa",
"google play",
"serviceworker"
],
"author": "Harit Himanshu",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@bubblewrap/cli": "^1.13.2",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/react": "^6.2.9",
"@svgr/webpack": "^5.5.0",
"@testing-library/react": "^11.2.7",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.23",
"@types/node": "^16.3.2",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"babel-jest": "^27.0.2",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^5.2.6",
"eslint": "^7.28.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^6.0.0",
"jest": "^27.0.4",
"prettier": "2.3.1",
"style-loader": "^2.0.0",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.4",
"url-loader": "^4.1.1",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0",
"workbox-precaching": "^6.1.5",
"workbox-routing": "^6.1.5",
"workbox-strategies": "^6.1.5",
"workbox-webpack-plugin": "^6.1.5",
"semantic-release": "^17.4.4"
},
"dependencies": {
"@fontsource/rubik": "^4.5.0",
"dotenv": "^10.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
}
}