-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.44 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
{
"name": "astradot-test-task",
"version": "1.0.0",
"description": "Test task for Astradot",
"main": "index.js",
"scripts": {
"precommit": "yarn lint && yarn test",
"watch": "webpack -w --progress --colors",
"wds": "webpack-dev-server ",
"build": "webpack",
"prod": "webpack -p --config-name webpack.config.prod.js",
"lint": "tslint -c tslint.json src/**/*.ts src/**/*.tsx"
},
"keywords": [],
"author": "Sergei Basharov <[email protected]> (https://basharov.net/)",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.11.0",
"@babel/plugin-transform-runtime": "7.11.0",
"@babel/preset-env": "7.11.0",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@types/react": "16.9.44",
"@types/react-dom": "16.9.8",
"@types/webpack": "4.41.21",
"@types/webpack-env": "1.15.2",
"babel-loader": "8.1.0",
"babel-plugin-import": "1.13.0",
"copy-webpack-plugin": "6.0.3",
"css-loader": "4.2.0",
"file-loader": "6.0.0",
"html-loader": "1.1.0",
"html-webpack-plugin": "4.3.0",
"mini-css-extract-plugin": "0.9.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"ts-loader": "8.0.2",
"tslint": "6.1.3",
"typescript": "3.9.7",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
},
"dependencies": {
"@babel/plugin-proposal-export-default-from": "7.10.4",
"@babel/runtime": "7.11.2"
}
}