-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 957 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
31
32
33
34
{
"name": "facebook-api",
"version": "0.0.1",
"description": "",
"license": "ISC",
"author": "Donovan Harscoet <[email protected]> (https://github.com/harscoet/)",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "npm run build",
"tsc": "tsc",
"build": "tsc && webpack-cli",
"dev": "tsc --watch",
"lint": "tslint --project tsconfig.json",
"webpack-cli": "webpack-cli",
"prettier": "prettier --write 'src/**/*.{ts,tsx,js,json,md}'"
},
"dependencies": {
"axios": "^0.18.0",
"jsutil": "harscoet/jsutil"
},
"devDependencies": {
"awesome-typescript-loader": "^5.2.1",
"expose-loader": "^0.7.5",
"prettier": "^1.17.1",
"terser-webpack-plugin": "^1.2.4",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5",
"typescript-tslint-plugin": "^0.3.1",
"webpack": "^4.32.0",
"webpack-cli": "^3.3.2"
}
}