This repository has been archived by the owner on Feb 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.06 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "api-sharp",
"version": "1.7.0",
"main": "dist/index.js",
"module": "dist/api-sharp.esm.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/whinc/api-sharp.git"
},
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --format cjs,esm --name ApiSharp",
"test": "tsdx test",
"test:server": "json-server -p 4000 ./server/db.json --middlewares ./server/middleware.js",
"test:watch": "tsdx test --watch",
"test:coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test:e2e": "parcel ./test/e2e/index.html",
"lint": "tsdx lint src",
"lint:fix": "tsdx lint src --fix",
"lint:types": "tsc --noEmit",
"pm2:server": "pm2 start npm --no-autorestart --name start_server -- run server",
"debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix && npm run lint:types"
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"lodash": "^4.17.15",
"lodash-es": "^4.17.15",
"core-js": "^3.2.1"
},
"devDependencies": {
"@babel/core": "7.8.7",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/preset-env": "7.8.7",
"@babel/preset-typescript": "7.8.3",
"@semantic-release/changelog": "3.0.4",
"@semantic-release/git": "7.0.16",
"@types/axios": "^0.14.0",
"@types/express": "4.17.1",
"@types/jest": "24.0.18",
"@types/lodash": "4.14.142",
"@types/react": "16.9.22",
"axios": "^0.19.2",
"babel-jest": "24.9.0",
"coveralls": "3.0.6",
"eslint-plugin-react-hooks": "2.4.0",
"husky": "3.1.0",
"json-server": "0.15.1",
"parcel": "1.12.4",
"pm2": "3.5.1",
"prettier": "1.18.2",
"pretty-quick": "1.11.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"semantic-release": "15.13.24",
"ts-node": "8.4.1",
"tsdx": "0.12.3",
"tslib": "1.10.0",
"typescript": "^3.9.5",
"xhr2": "0.2.0"
}
}