-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
57 lines (57 loc) · 1.7 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
{
"name": "scriptable-types",
"version": "1.0.0",
"author": "xiaomingyang",
"description": "",
"main": "index.js",
"keywords": [
"scriptable",
"ios",
"widget"
],
"scripts": {
"watch": "cross-env watching=true nodemon --config nodemon.json",
"dev": "cross-env NODE_ENV=development compileType=one ts-node ./src/lib/compile.ts",
"dev:all": "cross-env NODE_ENV=development compileType=all ts-node ./src/lib/compile.ts",
"build": "cross-env NODE_ENV=production compileType=one ts-node ./src/lib/compile.ts",
"build:all": "cross-env NODE_ENV=production compileType=all ts-node ./src/lib/compile.ts"
},
"license": "ISC",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/eslint": "^7.2.2",
"@types/express": "^4.17.9",
"@types/fs-extra": "^9.0.5",
"@types/ip": "^1.1.0",
"@types/lodash": "^4.14.165",
"@types/node": "^14.6.0",
"@types/prettier": "^2.1.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/scriptable-ios": "^1.6.1",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"cross-env": "^7.0.3",
"esbuild": "^0.8.12",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"javascript-obfuscator": "^2.9.4",
"nodemon": "^2.0.6",
"prettier": "^2.1.1",
"ts-loader": "^8.0.2",
"ts-node": "^8.10.2",
"typescript": "^4.0.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"ip": "^1.1.5",
"lodash": "^4.17.20",
"qrcode-terminal": "^0.12.0"
}
}