-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "sketch-assets-converter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "nodemon out/index.js",
"build:dev": "tsc --watch --preserveWatchOutput",
"dev": "concurrently \"npm:build:dev\" \"npm:start:dev\"",
"start:prod": "node out/index.js",
"build:prod": "tsc -p .",
"prod": "npm run build:prod && npm run start:prod"
},
"keywords": [],
"author": "",
"devDependencies": {
"@types/del": "^4.0.0",
"@types/express": "^4.17.7",
"@types/lokijs": "^1.5.3",
"@types/multer": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"concurrently": "^5.3.0",
"eslint": "^7.7.0",
"nodemon": "^2.0.4",
"sketch-constructor": "^1.24.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"@sketch-hq/sketch-core-assistant": "^6.0.0",
"@sketch-hq/sketch-file-format-ts": "^5.1.1",
"@types/node": "^14.6.0",
"aws-sdk": "^2.733.0",
"cors": "^2.8.5",
"del": "^5.1.0",
"express": "^4.17.1",
"jszip": "^3.5.0",
"lokijs": "^1.5.11",
"multer": "^1.4.2",
"s3": "^4.0.0",
"sharp": "^0.25.4",
"sketch-file": "^0.3.3"
}
}