forked from saltyshiomix/nextron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.78 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
{
"name": "nextron",
"version": "7.1.0",
"description": "⚡ NEXT.js + Electron ⚡",
"repository": "[email protected]:saltyshiomix/nextron.git",
"author": "Shiono Yoshihide <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/saltyshiomix/nextron",
"keywords": [
"electron",
"next",
"nextjs",
"next.js",
"react",
"reactjs",
"react.js",
"nextron"
],
"bugs": {
"url": "https://github.com/saltyshiomix/nextron/issues",
"email": "[email protected]"
},
"files": [
"bin",
"babel.js"
],
"bin": {
"nextron": "bin/nextron.js"
},
"scripts": {
"predev": "npm run build",
"dev": "node dev",
"prebuild": "rimraf bin",
"build": "rollup -c",
"prepublishOnly": "NODE_ENV=production npm run build"
},
"dependencies": {
"@babel/core": "7.15.5",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-object-rest-spread": "7.15.6",
"@babel/plugin-proposal-optional-chaining": "7.14.5",
"@babel/plugin-transform-runtime": "7.15.0",
"@babel/preset-env": "7.15.6",
"@babel/preset-typescript": "7.15.0",
"@babel/runtime": "7.15.4",
"@babel/runtime-corejs3": "7.15.4",
"arg": "5.0.1",
"babel-loader": "8.2.2",
"chalk": "4.1.2",
"delay": "5.0.0",
"execa": "5.1.1",
"fs-extra": "10.0.0",
"webpack": "5.53.0",
"webpack-merge": "5.8.0"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@types/fs-extra": "^9.0.12",
"@types/node": "^14.14.31",
"rimraf": "^3.0.2",
"rollup": "^2.57.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.4.3"
}
}