-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.9 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
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
{
"name": "spectool",
"version": "0.1.0",
"main": "./build/app_main.js",
"license": "Apache-2.0",
"author": "Joseph T. Lapp",
"scripts": {
"build": "tsc && rollup -c",
"build-client": "run-s build client",
"build-backend": "tsc",
"check": "svelte-check --tsconfig ./tsconfig.json",
"server": "kill-port 5000 && rollup -c -w",
"start": "sirv public --no-clear --single",
"client": "tsc && cross-env NODE_ENV=development electron .",
"window": "node build/tools/wait 2000 && cross-env NODE_ENV=development electron . && node build/tools/wait 1000 && kill-port 5000",
"dist:mac": "tsc && rollup -c && electron-builder build --cd mac --publish never",
"test": "jest",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write",
"launch": "run-p start window"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-typescript": "^8.0.0",
"@tsconfig/svelte": "^2.0.0",
"@types/jest": "^27.0.2",
"@types/level": "^6.0.0",
"@types/lodash": "^4.14.175",
"@types/node": "^16.11.11",
"@types/page": "^1.11.5",
"@types/readline-sync": "^1.4.4",
"@types/sqlstring": "^2.3.0",
"cross-env": "^7.0.3",
"electron": "^15.2.0",
"jest": "^27.3.1",
"kill-port": "^2.0.1",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.11",
"prettier": "^2.4.1",
"readline-sync": "^1.4.10",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"sass": "^1.43.4",
"sirv-cli": "^1.0.14",
"svelte": "^3.0.0",
"svelte-check": "^2.0.0",
"svelte-preprocess": "^4.10.2",
"ts-jest": "^27.0.6",
"tslib": "^2.0.0",
"typescript": "^4.0.0"
},
"dependencies": {
"@popperjs/core": "^2.10.2",
"bootstrap": "^5.1.3",
"electron-affinity": "^1.2.0",
"electron-log": "^4.4.1",
"fast-csv": "^4.3.6",
"keytar": "^7.7.0",
"knex": "^0.95.11",
"level": "^7.0.1",
"mysql2": "^2.3.1",
"mysql2-timeout-additions": "^1.1.2",
"source-map-support": "^0.5.20",
"sqlstring": "^2.3.2",
"subleveldown": "^6.0.1",
"svelte-forms-lib": "^1.10.7",
"sveltestrap": "5.7.0",
"talisman": "^1.1.4",
"yup": "^0.32.11"
},
"build": {
"productName": "SpecTool",
"appId": "edu.utexas.spectool",
"win": {
"target": [
"nsis"
]
},
"mac": {
"target": [
"dmg"
],
"category": "productivity",
"type": "distribution",
"hardenedRuntime": "true"
},
"linux": {
"target": [
"AppImage",
"snap"
],
"category": "productivity"
},
"files": [
"build/**/*",
"node_modules/**/*",
"package.json"
],
"extraResources": [
"assets/**"
]
}
}