-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.15 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.15 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
43
44
45
46
47
48
49
50
{
"name": "create-app",
"version": "2.0.2",
"description": "configuring once, rendering both client and server.",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll",
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "ts-node move.ts"
},
"files": [
"share",
"client",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Lucifier129/create-app.git"
},
"keywords": [
"isomorphic",
"router",
"controller",
"single-page-app"
],
"author": "Jade Gu (guyingjie129@163.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lucifier129/create-app/issues"
},
"homepage": "https://github.com/Lucifier129/create-app#readme",
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/jest": "^23.0.1",
"@types/node": "^12.6.9",
"fs-extra": "^8.1.0",
"jest": "^23.0.1",
"rimraf": "^2.6.3",
"ts-jest": "^23.0.1",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"dependencies": {
"create-history": "^2.0.3",
"path-to-regexp": "^1.7.0"
}
}