-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
37 lines (37 loc) · 1.07 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
{
"name": "ts-axios",
"version": "1.0.0",
"description": "",
"main": "src/core/dispatchRequest.ts",
"scripts": {
"server": "node server/server.js",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts'",
"start": "cross-env NODE_ENV=development webpack-dev-server --config './examples/webpack.config.js' --host 192.168.1.106 --open --hot --port 8000",
"build": "cross-env NODE_ENV=production webpack --config './examples/webpack.config.js'"
},
"keywords": [
"typescript"
],
"license": "MIT",
"devDependencies": {
"cross-env": "^5.2.0",
"prettier": "^1.14.3",
"ts-loader": "^5.3.3",
"tslint-loader": "^3.5.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^8.0.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"typescript": "^3.3.3333",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"cookie-parser": "^1.4.4",
"@types/qs": "^6.5.3",
"atob": "^2.1.2",
"qs": "^6.7.0"
}
}