-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.42 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.42 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "Typifier",
"version": "1.3.1",
"description": "Transpiler for converting JavaScript code to Typescript in kuraCloud",
"main": "./distr/main.js",
"scripts": {
"test": "jest",
"watchTest": "jest --watch",
"testMon": "nodemon --watch src --exec jest",
"watch": "webpack --watch --colors --progress --mode=development",
"make": "webpack --colors --progress --mode=production",
"start": "electron distr/main.js",
"debug": "nodemon --exec electron distr/main.js --dev",
"pack": "electron-builder --dir",
"dist": "electron-builder --publish never"
},
"author": "Toby Suggate <t.suggate@adinstruments.com>",
"license": "ISC",
"build": {
"appId": "com.tsuggate.typify",
"win": {
"target": [
"nsis"
]
},
"mac": {
"category": "Utility"
},
"nsis": {
"perMachine": true
},
"fileAssociations": [
{
"ext": "js",
"role": "Editor"
}
],
"files": [
"distr",
"node_modules",
"test-files",
"resources"
]
},
"dependencies": {
"acorn": "^7.2.0",
"commander": "^2.9.0",
"css-loader": "^3.5.3",
"electron-window-state": "^4.1.1",
"escodegen": "^1.14.1",
"esprima": "^4.0.1",
"estree-walker": "^0.3.1",
"extract-text-webpack-plugin": "^2.1.0",
"fs-extra": "^9.0.0",
"js-beautify": "^1.11.0",
"nodemon": "^1.10.2",
"react": "^15.5.4",
"react-ace": "^5.1.1",
"react-dom": "^15.5.4",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"style-loader": "^1.2.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3",
"underscore": "^1.8.3",
"webpack": "^4.43.0",
"winston": "^2.3.1"
},
"devDependencies": {
"@types/commander": "^2.9.0",
"@types/diff": "^4.0.2",
"@types/escodegen": "^0.0.6",
"@types/esprima": "^4.0.2",
"@types/estree": "^0.0.44",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^25.2.3",
"@types/js-beautify": "^1.11.0",
"@types/node": "^12.12.6",
"@types/react": "^15.0.23",
"@types/react-dom": "^15.5.0",
"@types/react-redux": "^5.0.10",
"@types/underscore": "^1.7.36",
"@types/winston": "^2.3.3",
"diff": "^3.2.0",
"electron": "^9.0.2",
"electron-builder": "^22.7.0",
"jest": "^26.0.1",
"jest-teamcity": "^1.7.0",
"mini-css-extract-plugin": "^0.9.0",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"webpack-cli": "^3.3.11"
}
}