-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 999 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
35
36
37
{
"name": "ajou-print-on-air",
"version": "1.0.0",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc --build",
"prestart": "npm install && rimraf dist/ && npm run build",
"start": "node dist/index.js"
},
"dependencies": {
"@grandchef/node-printer": "^0.7.1",
"axios": "^0.27.2",
"classic-level": "^1.2.0",
"hono": "^2.1.4",
"ipp-printer": "^1.0.0",
"js-yaml": "^4.1.0",
"pdf-page-counter": "^1.0.3",
"rimraf": "^3.0.2",
"typescript": "^4.8.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.7.16",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node": "^10.9.1"
}
}