http-summoner
Version:
Http service
67 lines (66 loc) • 1.93 kB
JSON
{
"name": "http-summoner",
"description": "Http service",
"version": "1.0.7",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "git@gitlab.com:grizzzly/summoner.git",
"author": "Mark <mvincha404@gmail.com>",
"keywords": [
"http",
"xhr",
"ajax",
"promise",
"xmlHttpRequest",
"service"
],
"license": "MIT",
"files": [
"lib/**/*"
],
"scripts": {
"start": "concurrently \"yarn start:client\" \"yarn start:server\"",
"start:client": "parcel ./src/example/index.html",
"start:server": "nodemon --watch ./src/server ./src/server/index.ts",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"test": "jest --config jestconfig.json --detectOpenHandles",
"prepare": "npm run test && npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jest": "^26.6.1",
"nodemon": "^2.0.6",
"parcel-bundler": "^1.12.4",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"ts-jest": "^26.4.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/material-ui": "^0.21.8",
"@types/styled-components": "^5.1.4",
"styled-components": "^5.2.1"
}
}