-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
53 lines (53 loc) · 1.29 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
{
"name": "thinkjs-official",
"description": "application created by thinkjs",
"version": "1.2.0",
"scripts": {
"start": "node development.js",
"lint": "eslint src/",
"lint-fix": "eslint --fix src/",
"now-build": "sh bin/update.sh",
"pkg-build": "pkg ./ --out-path=dist",
"compile": "babel --no-babelrc src/ --presets think-node --out-dir app/"
},
"dependencies": {
"highlight.js": "^9.12.0",
"markdown-toc": "^1.2.0",
"marked": "^0.7.0",
"natives": "^1.1.6",
"think-cache": "^1.0.0",
"think-cache-file": "^1.0.8",
"think-i18n": "^1.2.3",
"think-loader": "^1.2.0",
"think-logger3": "^1.0.0",
"think-model": "^1.0.0",
"think-model-mysql": "^1.0.0",
"think-session": "^1.0.0",
"think-session-file": "^1.0.5",
"think-view": "^1.0.0",
"think-view-ejs": "0.0.11",
"think-view-nunjucks": "^1.0.1",
"thinkjs": "^3.2.11"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-think": "^1.0.0",
"think-watcher": "^3.0.0"
},
"repository": "",
"license": "MIT",
"readmeFilename": "README.md",
"bin": "pkg.js",
"pkg": {
"assets": [
"src/**/*",
"view/**/*",
"www/**/*"
],
"targets": [
"node10-linux-x64",
"node10-macos-x64",
"node10-win-x64"
]
}
}