-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "ccc",
"description": "application created by thinkjs",
"version": "1.0.0",
"author": "xwlyy <[email protected]>",
"scripts": {
"start": "node development.js",
"test": "THINK_UNIT_TEST=1 nyc ava test/ && nyc report --reporter=html",
"compile": "babel --no-babelrc src/ --presets think-node --out-dir app/",
"lint": "eslint src/",
"lint-fix": "eslint --fix src/"
},
"dependencies": {
"lodash": "^4.17.10",
"think-cache": "^1.0.0",
"think-cache-file": "^1.0.8",
"think-logger3": "^1.0.0",
"think-model": "^1.2.2",
"think-model-sqlite": "^1.1.1",
"think-session": "^1.0.0",
"think-session-file": "^1.0.5",
"think-websocket": "^1.0.6",
"think-websocket-socket.io": "^1.0.10",
"thinkjs": "^3.0.0",
"web3": "^1.0.0-beta.35"
},
"devDependencies": {
"eslint": "^4.2.0",
"eslint-config-think": "^1.0.0",
"think-inspect": "0.0.2",
"think-watcher": "^3.0.0"
},
"repository": "",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"readmeFilename": "README.md",
"thinkjs": {
"metadata": {
"name": "ccc",
"description": "application created by thinkjs",
"author": "xwlyy <[email protected]>",
"babel": true
},
"projectName": "ccc",
"template": "/usr/local/lib/node_modules/think-cli/default_template",
"clone": false,
"isMultiModule": false
}
}