-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.3 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
{
"name": "typescript-import-test",
"main": "dist/index.js",
"scripts": {
"debug": "webpack-dev-server --hot debug.ts",
"babelify": "./node_modules/.bin/babel --config-file ./.babel.config.js src --out-dir dist --copy-files --extensions '.ts,.tsx,.js, .jsx' --source-maps inline",
"build": "npm i && tsc && ./node_modules/.bin/babel --config-file ./.babel.config.js src --out-dir dist --copy-files --extensions '.ts,.tsx,.js, .jsx' --source-maps inline",
"release": "./release.sh",
"build:babel": "npm i && tsc && ./node_modules/.bin/babel --config-file ./.babel.config.js src --out-dir dist --copy-files --extensions '.ts,.tsx,.js, .jsx' --source-maps inline"
},
"version": "0.0.2",
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"babel-loader": "^8.1.0",
"eslint": "^7.12.1",
"html-webpack-plugin": "^4.5.0",
"prettier": "^2.1.2",
"source-map": "^0.7.3",
"ts-loader": "^8.0.7",
"typescript": "^4.0.5",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"types": "dist/index.d.ts",
"files": [
"dist"
]
}