-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "create-ssr-app",
"version": "1.1.198",
"description": "Create Serverless SSR App",
"main": "./bin/init.js",
"scripts": {
"dev": "cross-env tsc -w -p ./tsconfig.json",
"build": "cross-env tsc -p ./tsconfig.json --inlineSourceMap false",
"lint": "cross-env NODE_OPTIONS=--max_old_space_size=4096 eslint . --ext .js,.ts --cache",
"lint:fix": "cross-env NODE_OPTIONS=--max_old_space_size=4096 eslint . --ext .js,.ts --cache --fix",
"test": "cross-env jest --coverage --verbose && codecov"
},
"bin": {
"create-ssr-app": "bin/index.js",
"csa": "bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhangyuang/create-ssr-app.git"
},
"keywords": [
"ssr",
"serverless"
],
"author": "yuuangzhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhangyuang/create-ssr-app/issues"
},
"homepage": "https://github.com/zhangyuang/create-ssr-app#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.0.27",
"@types/shelljs": "^0.8.8",
"codecov": "^3.8.0",
"cross-env": "^7.0.2",
"eslint-config-standard-react-ts": "^1.0.9",
"husky": "^4.3.0",
"jest": "^26.6.1",
"ts-jest": "^26.4.3",
"typescript": "^4.0.0"
},
"dependencies": {
"dclone": "^1.3.3",
"minimist": "^1.2.5",
"prompts": "^2.4.1",
"shelljs": "^0.8.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}