-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.81 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
{
"name": "entry-module",
"version": "1.0.0",
"description": "entry module generator",
"main": "dist/electron/main.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "npm run build && electron .",
"cli": "ts-node --files ./src/cli",
"debug": "npm run build && electron . --inspect",
"test": "cross-env TS_NODE_FILES=true mocha --require ts-node/register ./**/*.spec.ts",
"webpack:watch": "cross-env NODE_ENV=development webpack -w"
},
"devDependencies": {
"@material-ui/core": "^4.11.0",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^7.0.0",
"@types/archiver": "^3.1.0",
"@types/chai": "^4.2.11",
"@types/fs-extra": "^8.1.0",
"@types/inquirer": "^6.5.0",
"@types/lodash": "^4.14.150",
"@types/mocha": "^7.0.2",
"@types/node": "12",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/rimraf": "^3.0.0",
"@types/semver": "^7.1.0",
"@types/sinon": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"archiver": "^4.0.1",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"electron": "^8.2.5",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.20.6",
"fs-extra": "^9.0.0",
"inquirer": "^7.1.0",
"lodash": "^4.17.21",
"mocha": "^7.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^2.8.1",
"semver": "^7.3.2",
"sinon": "^9.0.2",
"ts-loader": "^8.0.3",
"ts-node": "^8.10.1",
"typescript": "^3.8.3",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@babel/core": "^7.14.6",
"@rollup/plugin-babel": "^5.3.0",
"recoil": "^0.3.1",
"rollup-plugin-node-builtins": "^2.1.2"
}
}