-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
135 lines (135 loc) · 4.47 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@pawjs/pawjs",
"version": "4.0.0-beta.19",
"description": "A minimal pluggable reactjs framework to develop a progressive web application",
"main": "main.tsx",
"engines": {
"node": ">=12.0"
},
"scripts": {
"prepare-demo": "node ./prepare-packages.js && cd demo && npm install && cd ..",
"build": "npm run build:prod",
"build:dev": "node ./paw.js --no-cache --root=./demo --env=development --verbose build",
"build:prod": "node ./paw.js --no-cache --config=./demo/prod.pawconfig.json --root=./demo --env=production build",
"lint": "eslint -c ./.eslintrc.json --ignore-path ./.gitignore ./src",
"lint:fix": "eslint -c ./.eslintrc.json --ignore-path ./.gitignore --fix ./src",
"publish-npm:beta": "npm publish --tag=next",
"start": "npm run start:dev",
"start:dev": "BABEL_DISABLE_CACHE=1 node ./paw.js --no-cache --root=./demo --env=development start",
"start:prod": "node ./paw.js --no-cache --root=./demo --env=production start",
"test:demo": "cross-env PROJECT_ROOT=./demo node ./paw.js --no-cache --verbose test"
},
"bin": {
"paw": "./paw.js",
"pawjs": "./paw.js"
},
"keywords": [
"framework",
"pawjs",
"react",
"pwa",
"progressive web application",
"webpack4",
"pluggable",
"react-pwa"
],
"author": "Atyantik Technologies Private Limited <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/cli": "7.17.10",
"@babel/core": "7.18.5",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.18.2",
"@babel/preset-react": "7.17.12",
"@babel/preset-typescript": "7.17.12",
"@babel/register": "7.17.7",
"@babel/types": "7.18.4",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.7",
"@types/compression": "1.7.2",
"@types/express": "4.17.13",
"@types/fs-extra": "9.0.13",
"@types/html-to-text": "8.1.0",
"@types/lodash": "4.14.182",
"@types/lru-cache": "^7.10.9",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/serialize-javascript": "5.0.2",
"@types/webpack-bundle-analyzer": "4.4.1",
"@types/webpack-hot-middleware": "2.25.6",
"@types/workbox-webpack-plugin": "5.1.8",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"autoprefixer": "10.4.7",
"babel-jest": "28.1.1",
"babel-loader": "8.2.5",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-template": "6.26.0",
"clean-webpack-plugin": "4.0.0",
"commander": "9.3.0",
"compression": "1.7.4",
"copy-webpack-plugin": "11.0.0",
"core-js": "3.23.2",
"cross-env": "7.0.3",
"cross-fetch": "^3.1.5",
"css-loader": "6.7.1",
"dotenv": "16.0.1",
"eslint": "8.18.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-import-resolver-webpack": "0.13.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"express": "4.18.1",
"hexoid": "^1.0.0",
"history": "5.3.0",
"hsts": "2.2.0",
"html-to-text": "8.2.0",
"jest": "28.1.1",
"lodash": "4.17.21",
"lru-cache": "^7.10.2",
"mini-css-extract-plugin": "2.6.1",
"postcss-loader": "7.0.0",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-cookie": "4.1.1",
"react-dom": "18.2.0",
"react-loadable": "5.5.0",
"react-refresh": "0.14.0",
"react-router": "6.3.0",
"react-router-dom": "6.3.0",
"regenerator-runtime": "0.13.9",
"sass": "1.53.0",
"sass-loader": "13.0.0",
"serialize-javascript": "6.0.0",
"stoppable": "^1.1.0",
"style-loader": "3.3.1",
"tapable": "2.2.1",
"tslint-config-airbnb": "5.11.2",
"typescript": "4.7.4",
"universal-cookie": "4.0.4",
"universal-cookie-express": "4.0.3",
"universal-url": "2.0.0",
"webpack": "5.73.0",
"webpack-bundle-analyzer": "4.5.0",
"webpack-dev-middleware": "5.3.3",
"webpack-hot-middleware": "2.25.1",
"workbox-webpack-plugin": "6.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Atyantik/pawjs.git"
},
"bugs": {
"url": "https://github.com/Atyantik/pawjs/issues"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/react-pwa"
},
"homepage": "https://github.com/Atyantik/pawjs#readme"
}