-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "react-ts-template",
"version": "1.0.0",
"description": "Starter Template for React Typescript Projects With No Boilerplate",
"main": "index.tsx",
"scripts": {
"dev": "webpack-dev-server --open --config webpack.dev.ts",
"build": "webpack --mode production --config webpack.prod.ts",
"test": "jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"keywords": [
"typescript",
"react",
"lint",
"ts",
"es"
],
"author": "Zunaib Imitiaz",
"license": "ISC",
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@types/html-webpack-plugin": "^3.2.1",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/webpack": "^4.41.0",
"awesome-typescript-loader": "^5.2.1",
"html-webpack-plugin": "^3.2.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.3",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
}
}