-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.23 KB
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
{
"name": "client-starter-kit",
"version": "1.0.0",
"description": "My own personal, opinionated starter kit for a web app client.",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "cross-env NODE_ENV=development webpack-serve ./webpack.config.js",
"lint": "tslint -p ./tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/casieber/client-starter-kit.git"
},
"author": "Colby Sieber",
"license": "MIT",
"bugs": {
"url": "https://github.com/casieber/client-starter-kit/issues"
},
"homepage": "https://github.com/casieber/client-starter-kit#readme",
"dependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"devDependencies": {
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.1.5",
"html-webpack-plugin": "^3.2.0",
"ts-loader": "^4.3.0",
"tsconfig-paths-webpack-plugin": "^3.1.3",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-loader": "^3.6.0",
"typescript": "^2.8.3",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-serve": "^1.0.2"
}
}