-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.05 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
{
"name": "phonet-sdk",
"version": "1.1.5",
"description": "SDK for Phonet telecommunication system",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/Sakhro/phonet-sdk.git",
"author": "Sava-Danylo Sakhro ([email protected])",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"dev": "webpack-dev-server --mode development --open",
"lint": "tslint -c tslint.json 'src/**/*.ts{,x}' 'server/**/*.ts{,x}'",
"lint:fix": "tslint -c tslint.json 'src/**/*.ts{,x}' 'server/**/*.ts{,x}' --fix --format verbose"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node-fetch": "^2.3.7",
"@types/ramda": "^0.26.9",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.19.1",
"ts-loader": "^6.0.4",
"tslint": "^5.18.0",
"tslint-consistent-codestyle": "^1.15.1",
"typescript": "^3.5.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"axios": "^0.19.0",
"ramda": "^0.26.1"
}
}