-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.62 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.62 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
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
{
"private": true,
"name": "baton",
"description": "AAC data-gathering app",
"version": "0.9.0",
"author": "Max Isom <hi@maxisom.me>",
"main": "app/background.js",
"scripts": {
"next:build": "next build renderer",
"next:export": "next export -o app renderer",
"server:watch": "tsc --watch",
"server:build": "tsc",
"dev": "BABEL_ENV=dev concurrently 'yarn server:watch' 'electron . 3000'",
"build": "del app && yarn next:build && yarn next:export && yarn server:build",
"package": "electron-builder --publish=always",
"start": "NODE_ENV=production electron .",
"test": "jest",
"test:coverage": "nyc jest && nyc report -r lcov",
"postinstall": "electron-builder install-app-deps",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"test-data": "ts-node -T test-data/build.ts --"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.12.1",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "4.0.0-alpha.60",
"buffer-replace": "^1.0.0",
"chunk": "^0.0.3",
"compromise": "^13.11.3",
"del": "^6.0.0",
"dexie": "^3.0.3",
"dotenv": "^8.2.0",
"electron-serve": "^1.1.0",
"electron-store": "^7.0.2",
"env-paths": "^2.2.0",
"got": "^11.8.2",
"libsodium-wrappers": "^0.7.9",
"p-event": "^4.2.0",
"react-use": "^15.3.4",
"react-virtuoso": "^1.0.0",
"reflect-metadata": "^0.1.13",
"reselect": "^4.0.0",
"sqlite3": "^5.1.2",
"typeorm": "^0.2.37",
"uuid": "^8.3.2",
"wink-eng-lite-model": "https://github.com/winkjs/wink-eng-lite-model/releases/download/1.1.0/wink-eng-lite-model-1.1.0.tgz",
"wink-nlp": "^1.8.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@material-ui/core": "^4.12.3",
"@types/chunk": "^0.0.0",
"@types/jest": "^27.0.1",
"@types/libsodium-wrappers": "^0.7.9",
"@types/node": "^16.9.1",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/sqlite3": "^3.1.7",
"@types/uuid": "^8.3.1",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-transform-typescript-metadata": "^0.3.1",
"byte-parser": "^1.0.0",
"concurrently": "^5.3.0",
"del-cli": "^3.0.1",
"electron": "^11.1.0",
"electron-builder": "^23.6.0",
"electron-notarize": "^1.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"make-dir": "^3.1.0",
"next": "10.0.3",
"nyc": "^15.1.0",
"prettier": "^2.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"spectron": "^13.0.0",
"truncating-stream": "^1.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.4.3",
"webpack": "4.44.2",
"yargs": "^16.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"globals": {
"ts-jest": {
"babelConfig": {
"presets": [
"@babel/preset-react"
]
}
}
}
}
}