forked from CloudWise-OpenSource/FlyFish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.57 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "Solution-Platform-Server",
"description": "application created by thinkjs",
"version": "1.6.0",
"scripts": {
"dev": "pm2-runtime start dev.js -n flyfish",
"dev-debug": "DEBUG=think-router node development.js",
"pm2-production-start": "pm2 start pm2.production.json",
"pm2-production-reload": "pm2 sendSignal SIGUSR2 Solution-Platform-Server pm2.production.json",
"pm2-production-restart": "pm2 restart pm2.production.json",
"pm2-production-stop": "pm2 stop pm2.production.json",
"pm2-staging-start": "pm2 start pm2.staging.json",
"pm2-staging-reload": "pm2 sendSignal SIGUSR2 Solution-Platform-Server pm2.staging.json",
"pm2-staging-restart": "pm2 restart pm2.staging.json",
"pm2-staging-stop": "pm2 stop pm2.staging.json",
"pm2-development-start": "pm2 start pm2.development.json",
"pm2-development-reload": "pm2 sendSignal SIGUSR2 Solution-Platform-Server pm2.development.json",
"pm2-development-restart": "pm2 restart pm2.development.json",
"pm2-development-stop": "pm2 stop pm2.development.json",
"compile": "babel --no-babelrc src/ --presets think-node --out-dir app/",
"lint": "eslint src/",
"lint-fix": "eslint --fix src/",
"createWebApiDoc": "apidoc -i ./src/web/controller/ -o ./www/webApiDoc",
"init_database_dev": "db-migrate up --config config/database.dev.json -e mysql -m ./migrations_init",
"init_database_production": "db-migrate up --config config/database.production.json -e mysql -m ./migrations_init",
"init_database_staging": "db-migrate up --config config/database.staging.json -e mysql -m ./migrations_init",
"init_database_development": "db-migrate up --config config/database.development.json -e mysql -m ./migrations_init",
"release": "standard-version",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"replace": "replace '\\* #' '*' CHANGELOG.md"
},
"dependencies": {
"archiver": "^2.1.1",
"async-file": "^2.0.2",
"db-migrate": "^0.10.5",
"db-migrate-mysql": "^1.1.10",
"extract-zip": "^1.6.6",
"lodash": "^4.17.5",
"mime": "^2.2.0",
"node-client-sdk": "^1.0.4",
"pm2": "^2.10.1",
"request": "^2.88.2",
"svg-captcha": "^1.4.0",
"think-cache": "^1.1.0",
"think-cache-file": "^1.1.0",
"think-cache-redis": "^1.2.0",
"think-logger3": "^1.1.1",
"think-model": "^1.1.7",
"think-model-mysql": "^1.0.6",
"think-session": "^1.0.3",
"think-session-file": "^1.0.6",
"think-view": "^1.0.11",
"think-view-nunjucks": "^1.0.7",
"thinkjs": "3.2.7",
"uuid": "^3.2.1"
},
"devDependencies": {
"apidoc": "^0.17.6",
"babel-cli": "^6.26.0",
"babel-preset-think-node": "^1.0.3",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^4.18.2",
"eslint-config-think": "^1.0.2",
"node-notifier": "^5.2.1",
"replace": "^1.2.1",
"standard-version": "^9.3.0",
"think-babel": "^1.0.6",
"think-inspect": "^0.0.2",
"think-watcher": "^3.0.3"
},
"standard-version": {
"scripts": {
"postchangelog": "npm run changelog && npm run replace && git add .",
"posttag": "git push origin --tags -f"
}
},
"apidoc": {
"name": "example",
"version": "1.0.0",
"description": "apiDoc basic example",
"apidoc": {
"title": "Custom apiDoc browser title",
"url": "https://api.github.com/v1"
}
},
"repository": "",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"readmeFilename": "README.md"
}