forked from gothinkster/realworld-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1 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
{
"name": "realworld-imagine-demo",
"version": "1.0.0",
"description": "> ### Imagine codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld) spec and API.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --config webpack.dev.config --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karimayachi/realworld-starter-kit.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/karimayachi/realworld-starter-kit/issues"
},
"homepage": "https://github.com/karimayachi/realworld-starter-kit#readme",
"devDependencies": {
"ts-loader": "^8.0.1",
"typescript": "^3.9.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@types/showdown": "^1.9.3",
"mobx": "^5.15.4",
"showdown": "^1.9.1"
}
}