-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 931 Bytes
/
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
{
"name": "svg-optimizer",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"express": "^4.17.1",
"multer": "^1.4.2",
"prettier": "^2.2.1",
"pug": "^3.0.0",
"svgo": "^1.3.2"
},
"devDependencies": {
"@types/cheerio": "^0.22.23",
"@types/express": "^4.17.2",
"@types/multer": "^1.4.5",
"@types/node": "^13.7.0",
"@types/prettier": "^2.1.5",
"@types/svgo": "^1.3.3",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^7.0.0",
"ts-node-dev": "^1.1.1",
"typescript": "^4.0.2"
},
"scripts": {
"start": "ts-node-dev --respawn --transpile-only src/index.ts",
"start:prod": "npm run build && node dist/index.js",
"build": "tsc && cp -r src/views dist/views",
"lint": "eslint . --ext .ts",
"prettify": "prettier --write ."
}
}