-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.65 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
49
50
51
52
53
54
55
56
{
"name": "typescript-webpack-react-babel",
"version": "1.0.0",
"description": "Typescript + Webpack + React + Babel starter.",
"main": "index.js",
"keywords": [
"webpack",
"react",
"typescript",
"babel",
"ts-loader",
"TSlinter"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "webpack --progress --colors --mode=production",
"start": "webpack-dev-server --config webpack.config.js --progress --colors --open --mode=development",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Daria Rucka",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"babel-loader": "^8.0.4",
"css-loader": "^2.0.1",
"enzyme": "^3.8.0",
"fork-ts-checker-webpack-plugin": "^0.5.2",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.11.0",
"prettier": "^1.15.3",
"react-test-renderer": "^16.7.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.1",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"@types/react": "^16.7.17",
"@types/react-dom": "^16.0.11",
"react": "^16.6.3",
"react-dom": "^16.6.3"
}
}