-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "chessboard-svg-image",
"version": "0.0.3",
"description": "Chess board JPEG image generator microservice",
"main": "src/index.js",
"scripts": {
"lint": "eslint --ext .js src",
"lint:fix": "eslint --fix --ext .js src",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon -w src src/index.js"
},
"author": "Denis Efremov <[email protected]>",
"license": "MIT",
"dependencies": {
"chess": "^0.6.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"sharp": "^0.32.4"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.25",
"@types/sharp": "^0.32.0",
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "^3.1.0",
"nodemon": "^2.0.7"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}