-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
42 lines (42 loc) · 1.27 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
{
"name": "apprun-realworld-example-app",
"version": "1.0.0",
"description": "> ### AppRun 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": {
"jest": "jest",
"test": "jest --watch",
"start": "webpack serve --mode development",
"build": "webpack --mode production",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yysun/realworld-starter-kit.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/yysun/realworld-starter-kit/issues"
},
"homepage": "https://github.com/yysun/realworld-starter-kit#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/marked": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"apprun": "^3.28.7",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"marked": "^4.0.10",
"source-map-loader": "^3.0.0",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"tslib": "^2.3.1",
"typescript": "^4.4.4",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
}
}