This repository has been archived by the owner on Dec 29, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "@freesewing/svg2pdf",
"version": "0.1.1",
"description": "A freesewing.org backend to turn SVG patterns into (tiled) PDFs",
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"precommit": "npm run pretty && lint-staged",
"patch": "npm version patch -m ':bookmark: v%s' && npm run build",
"minor": "npm version minor -m ':bookmark: v%s' && npm run build",
"major": "npm version major -m ':bookmark: v%s' && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"prettier": "npx prettier --write 'src/**'",
"lint": "eslint --fix \"src/*.js\"",
"dev": "backpack",
"start": "backpack build && pm2 start build/main.js --name freesewing-tiler",
"build": "backpack build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freesewing/svg2pdf.git"
},
"author": "Joost De Cock",
"license": "MIT",
"bugs": {
"url": "https://github.com/freesewing/svg2pdf/issues"
},
"homepage": "https://github.com/freesewing/svg2pdf#readme",
"prettier": "@freesewing/prettier-config",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"body-parser": "1.18.3",
"cors": "2.8.4",
"express": "4.16.4",
"formidable": "1.2.1",
"rimraf": "2.6.2",
"shell-exec": "1.0.2"
},
"devDependencies": {
"@freesewing/prettier-config": "2.0.0-beta.37",
"backpack-core": "^0.8.4",
"nodemon": "1.18.6"
}
}