-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
{
"name": "@cwire/nodejs-sdk",
"version": "0.3.9",
"files": [
"lib/**/*",
"types/**/*",
"package.json"
],
"main": "lib/index.js",
"types": "types/index.d.ts",
"description": "CWire helps your to build awesome frontend for administration tasks",
"scripts": {
"build": "tsc",
"watch": "tsc-watch",
"typescript-dev": "tsc --watch",
"lint": "tslint -p tsconfig.json",
"prettier": "prettier --write \"src/**/*.ts\"",
"lint-fix": "tslint -p tsconfig.json && prettier --write \"src/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cwire-io/nodejs-sdk.git"
},
"author": "Christoph-Thomas Abs & Leon Lowitzki",
"license": "ISC",
"bugs": {
"url": "https://github.com/cwire-io/nodejs-sdk/issues"
},
"homepage": "https://github.com/cwire-io/nodejs-sdk#readme",
"dependencies": {
"axios": "^0.21.1",
"socket.io-client": "^3.0.4"
},
"peerDependencies": {
"mongoose": "*",
"sequelize": "*"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.6",
"@types/mongoose": "^5.7.36",
"@types/sequelize": "^4.28.9",
"@types/socket.io-client": "^1.4.33",
"prettier": "^2.2.1",
"sequelize": "^5.22.3",
"ts-loader": "^7.0.5",
"tsc-watch": "^4.2.9",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.6"
}
}