forked from web-devkits/webinizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.31 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
{
"name": "webinizer",
"version": "0.0.1",
"description": "Toolkit to help the conversion of native apps/libs to Web version",
"main": "dist/webinizer.js",
"types": "typings/webinizer.d.ts",
"scripts": {
"build": "rimraf dist && tsc -b ./tsconfig.all.json && cp -r ./src/assets ./dist/assets",
"preserve": "npm run build",
"serve": "cross-env NODE_ENV=development concurrently \"tsc -b --watch ./tsconfig.all.json\" \"nodemon -q dist/server.js\"",
"prestart": "npm run build",
"start": "cross-env NODE_ENV=production node dist/server.js",
"lint": "eslint '**/*.ts'",
"lint-fix": "eslint --fix '**/*.ts'",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"pretest": "npm run build",
"test": "cross-env TS_NODE_PROJECT='./tests/tsconfig.json' mocha -r ts-node/register tests/index.ts --timeout 5000",
"doc": "rimraf docs && typedoc",
"prepare": "husky install",
"swagger-autogen": "node ./swagger.js"
},
"repository": {
"type": "git",
"url": "https://github.com/intel/webinizer.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/intel/webinizer/issues"
},
"homepage": "https://github.com/intel/webinizer#readme",
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/adm-zip": "^0.5.0",
"@types/chai": "^4.3.4",
"@types/configstore": "^6.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/graceful-fs": "^4.1.6",
"@types/libnpmsearch": "^2.0.3",
"@types/lodash": "^4.14.191",
"@types/mocha": "^10.0.1",
"@types/multiparty": "^0.0.33",
"@types/node": "^18.11.18",
"@types/npm-package-arg": "^6.1.1",
"@types/pacote": "^11.1.5",
"@types/prettier": "^2.7.3",
"@types/semver": "^7.3.13",
"@types/shelljs": "^0.8.11",
"@types/write-file-atomic": "^4.0.0",
"@types/ws": "^8.5.9",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"chai": "^4.3.7",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-recommended": "^4.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"rimraf": "^3.0.2",
"shiki": "^0.12.1",
"swagger-autogen": "^2.23.5",
"ts-node": "^10.9.1",
"typedoc": "^0.23.24",
"typedoc-plugin-missing-exports": "^1.0.0",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typescript": "^4.9.4"
},
"dependencies": {
"adm-zip": "^0.5.10",
"ajv": "^8.12.0",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"directory-tree": "^3.5.1",
"dot-prop": "^6.0.1",
"express": "^4.19.2",
"express-validator": "^7.0.1",
"glob": "^8.0.3",
"graceful-fs": "^4.2.10",
"helmet": "^7.0.0",
"libnpmsearch": "^6.0.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"multiparty": "^4.2.3",
"npm-package-arg": "^10.1.0",
"pacote": "^15.1.1",
"prettier": "^2.8.2",
"pretty-format": "^29.3.1",
"semver": "^7.5.4",
"shelljs": "^0.8.5",
"shlex": "^2.1.2",
"write-file-atomic": "^5.0.0",
"ws": "^8.17.1"
}
}