forked from gothinkster/realworld-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.42 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
{
"name": "realworld-typescript-webcomponents",
"version": "1.0.0",
"description": "Typescript codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld) spec and API.",
"private": true,
"scripts": {
"start": "webpack-dev-server --open -d",
"build": "webpack",
"build:prod": "webpack --config webpack.config.prod.js",
"watch": "webpack --watch",
"lint": "tslint --project .",
"lint:fix": "tslint --project . --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gardient/realworld-typescript-webcomponents.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gardient/realworld-typescript-webcomponents/issues"
},
"homepage": "https://github.com/gardient/realworld-typescript-webcomponents#readme",
"devDependencies": {
"awesome-typescript-loader": "^5.2.1",
"copy-webpack-plugin": "^4.5.2",
"html-webpack-plugin": "^3.2.0",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.4",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.11.0",
"typescript": "^3.1.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"@types/navigo": "^7.0.1",
"markdown": "^0.5.0",
"navigo": "^7.1.2"
}
}