-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.84 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
{
"name": "ts-node-electron-aws-s3-app",
"version": "1.0.0",
"description": "ts-node-electron-aws-s3-app",
"homepage": "#readme",
"repository": {
"type": "git",
"url": "https://github.com/tberey/ts-node-electron-aws-s3-app"
},
"main": "build/main.js",
"types": "build/main.d.ts",
"scripts": {
"dev": "nodemon",
"setup": "npm update && npm install",
"cleanup": "rimraf ./logs && rimraf ./build",
"build": "rimraf ./build && npm run compile",
"compile": "tsc",
"quick:api": "node build/main.js",
"quick:app": "electron build/main.js",
"start:api": "npm run build && node build/main.js",
"start:app": "npm run build && electron build/main.js",
"upinstart": "npm update && npm install && npm run start:app",
"test:full": "electron-mocha -r ts-node/register src/tests/*.test.ts",
"test": "mocha --exit -r ts-node/register src/tests/deployment.test.ts",
"test:test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' electron-mocha -r ts-node/register 'src/tests/*.ts'",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/express": "^4.17.11",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"electron": "^12.0.9",
"eslint": "^7.29.0",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"aws-sdk": "^2.912.0",
"axios": "^0.21.1",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"dotenv": "^9.0.2",
"ejs": "^3.1.6",
"ejs-electron": "^2.1.1",
"electron-mocha": "^10.0.0",
"express": "^4.17.1",
"fs": "0.0.1-security",
"mocha": "^8.4.0",
"rollbar": "^2.21.1",
"simple-txt-logger": "^1.0.5"
}
}