This repository was archived by the owner on Jul 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·75 lines (75 loc) · 2.06 KB
/
package.json
File metadata and controls
executable file
·75 lines (75 loc) · 2.06 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
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
{
"name": "firejsx",
"main": "FireJSX.js",
"version": "0.0.1",
"license": "GPL-3.0-or-later",
"description": "A zero config, highly customizable, progressive react static site generator with blazingly fast SSR and on the fly builds",
"keywords": [
"react",
"react-static",
"gatsby",
"nextjs",
"firejsx",
"firejs",
"jsx",
"SSR",
"SSB"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eAdded/firejsx.git"
},
"author": "Aniket Prajapati <prajapati.ani306@gmail.com>",
"private": false,
"dependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.9.4",
"@babel/runtime": "^7.10.2",
"@hot-loader/react-dom": "^16.13.0",
"babel-loader": "^8.1.0",
"chokidar": "^3.4.0",
"css-hot-loader": "^1.4.4",
"css-loader": "^3.5.3",
"express": "^4.17.1",
"fs-extra": "^9.0.0",
"jsdom": "^16.2.2",
"lodash": "^4.17.15",
"memory-fs": "^0.5.0",
"mini-css-extract-plugin": "^0.9.0",
"react-helmet": "^6.1.0",
"react-hot-loader": "^4.12.21",
"smartarg": "^1.0.0",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-clean-obsolete-chunks": "^0.4.0",
"webpack-hot-middleware": "^2.25.0",
"yaml": "^1.10.0"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jsdom": "^16.2.3",
"@types/lodash": "^4.14.151",
"@types/node": "^14.0.1",
"@types/webpack": "^4.41.13",
"react": "^16.13.1",
"react-dom": "npm:@hot-loader/react-dom"
},
"bin": {
"firejsx": "bin.js"
},
"bugs": {
"url": "https://github.com/eAdded/firejsx/issues"
},
"homepage": "https://github.com/eAdded/firejsx#readme",
"scripts": {
"sync": "sh scripts/sync.sh",
"watch": "node scripts/watch.js",
"dev": "yarn sync && yarn watch",
"autopublish": "sh scripts/autopublish.sh",
"publishNitely": "yarn autopublish nitely",
"publishDev": "yarn autopublish dev"
}
}