-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.35 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
108
{
"name": "small-cloud",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"type": "module",
"mocha": {
"recursive": true,
"extension": [
"ts"
],
"require": [
"ts-node/register"
],
"loader": "ts-node/esm"
},
"scripts": {
"clean": "rimraf dist/*",
"copy-assets": "npx jake tools:copy-assets --jakefile jakefile.cjs",
"check-local": "npx jake --jakefile jakefile.cjs tools:check-local",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lint:fix": "npm run lint -- --fix",
"lint:check": "tslint-config-prettier-check ./tslint.json",
"prettier": "prettier --write --config ./.prettierrc './src/**/*.ts'",
"tsc": "tsc",
"build": "npm-run-all clean lint:fix tsc copy-assets",
"dev:start": "npm-run-all build start",
"dev:start:only": "npm run start",
"dev": "nodemon --watch src -e ts,ejs,js --exec npm run dev:start",
"start": "node .",
"test:unit": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"ESNext\" }' mocha",
"test:unit:ci": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"ESNext\" }' mocha 'src/**/*.unit.spec.ts'",
"test:acceptance": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"ESNext\" }' mocha --timeout 300000",
"test:acceptance:ci": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"ESNext\" }' mocha --timeout 300000 'src/**/*.acceptance.spec.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adrianiurca/small-cloud.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/adrianiurca/small-cloud/issues"
},
"homepage": "https://github.com/adrianiurca/small-cloud#readme",
"dependencies": {
"@noble/hashes": "^1.3.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ed25519-keygen": "^0.3.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"micro-packed": "^0.3.2",
"node-ssh": "^13.0.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"random-words": "^1.1.1",
"randomstring": "^1.2.1",
"shelljs": "^0.8.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.5",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/ejs": "^3.0.6",
"@types/express": "^4.17.11",
"@types/fs-extra": "^9.0.11",
"@types/jake": "^0.0.33",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.1",
"@types/node-ssh": "^7.0.0",
"@types/passport": "^1.0.10",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"@types/proxyquire": "^1.3.28",
"@types/random-words": "^1.1.1",
"@types/randomstring": "^1.1.6",
"@types/shelljs": "^0.8.8",
"@types/sinon": "^10.0.13",
"@types/uuid": "^8.3.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"esm": "^3.2.25",
"fs-extra": "^9.1.0",
"jake": "^10.8.5",
"mocha": "^10.2.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.6",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"sinon": "^15.0.2",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.7.4"
}
}