-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 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
{
"name": "react-typescript-boilerplate",
"version": "1.0.0",
"description": "The minimal React, Webpack, Babel, TypeScript setup without using create-react-app.",
"main": "src/index.tsx",
"scripts": {
"build": "webpack --mode production",
"start": "webpack-dev-server --config webpack.config.js",
"test": "jest --watch",
"lint": "tslint --config tslint.json 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "https://github.com/kaystd/react-typescript-boilerplate.git"
},
"keywords": [],
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/kaystd/react-typescript-boilerplate/issues"
},
"homepage": "https://github.com/kaystd/react-typescript-boilerplate#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/enzyme": "^3.9.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.12",
"@types/node": "^12.0.0",
"@types/react": "^16.8.16",
"@types/react-dom": "^16.8.4",
"@types/webpack-env": "^1.13.9",
"awesome-typescript-loader": "^5.2.1",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"jest": "^24.7.1",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}