-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "@parkingboss/api",
"version": "1.3.2",
"description": "The Parking Boss API",
"main": "dist/cjs/index.js",
"module": "dist/es6/index.js",
"scripts": {
"clean": "rm -rf dist types",
"build:esm": "tsc",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build": "run-p build:*",
"dev:esm": "tsc -w",
"dev:cjs": "tsc -w --project tsconfig.cjs.json",
"dev": "run-p dev:*",
"prepare": "run-s clean build",
"postversion": "git push && git push --tags && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/parkingboss/parkingboss-api.git"
},
"keywords": [
"Parking",
"API",
"Fetch"
],
"author": "Parking Boss",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/parkingboss/parkingboss-api/issues"
},
"homepage": "https://github.com/parkingboss/parkingboss-api",
"devDependencies": {
"@types/jwt-decode": "^2.2.1",
"@types/lodash-es": "^4.17.3",
"@types/store": "^2.0.2",
"npm-run-all": "^4.1.5",
"typescript": "^4.3.5"
},
"dependencies": {
"date-fns": "^2.12.0",
"jwt-decode": "^2.2.0",
"lodash-es": "^4.17.15",
"store": "^2.0.12"
},
"files": [
"dist",
"types"
]
}