-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 909 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 909 Bytes
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
{
"name": "@onixjs/starter",
"version": "1.0.4",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "npm run lint:fix && tsc",
"start": "npm run build && node dist/index.js",
"clean:unix": "rm -rf dist",
"clean:windows": "rmdir /S /Q dist",
"lint": "npm run prettier:check",
"lint:fix": "npm run prettier:fix",
"prettier:cli": "prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write"
},
"author": "Jonathan Casarrubias",
"license": "MIT",
"dependencies": {
"@onixjs/core": "^1.0.0-beta.4",
"@onixjs/sdk": "^1.0.0-alpha.14",
"mongoose": "^5.0.17",
"node-localstorage": "^1.3.1",
"reflect-metadata": "^0.1.12",
"ws": "^5.1.1"
},
"devDependencies": {
"@types/ws": "^5.1.0",
"prettier": "^1.12.1",
"typescript": "^2.8.3"
}
}