-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 952 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
{
"name": "@vatom/spark-xprize-plugin",
"version": "1.0.0",
"license": "MIT",
"types": "./dist/index.js",
"files": [
"dist",
"LICENSE",
"README.md",
"public"
],
"main": "./dist/index",
"author": "Alistair Farquharson",
"dependencies": {
"@vatom/spark-sdk": "^1.0.13",
"dotenv": "^16.0.3",
"module-alias": "^2.2.2"
},
"scripts": {
"start": "node -r module-alias/register dist/index.js",
"start:watch": "nodemon -r module-alias/register dist/index.js",
"build": "npx tsc",
"build:watch": "npx tsc -w",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"{src,scripts,migrations}/**/*.{js,ts}\"",
"lint": "eslint \"{src,scripts,migrations}/**/*.{js,jsx,ts,tsx}\"",
"tslint-check": "tslint-config-prettier-check ./tslint.json"
},
"devDependencies": {
"nodemon": "^2.0.2",
"typescript": "^4.6.3"
}
}