-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 916 Bytes
/
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
{
"name": "resource-js",
"version": "1.0.5",
"description": "Resource exchange for js",
"main": "dist",
"author": "Marsch Huynh ([email protected]))",
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack --mode=production --config webpack.config.js",
"pre_build": "lint",
"lint": "tsc --noEmit && eslint '*/**/*.{ts,tsx}' --quiet --fix",
"watch": "webpack --mode=development --config webpack.config.js",
"test": "babel-node --presets @babel/preset-env test/index.js"
},
"devDependencies": {
"@types/node": "^11.13.7",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint": "^5.16.0",
"ts-loader": "^5.4.3",
"ts-node": "^8.1.0",
"typescript": "^3.5.3"
},
"dependencies": {
"axios": "^0.18.1"
}
}