project init
This commit is contained in:
commit
66acaf1cc5
18
.gitignore
vendored
Normal file
18
.gitignore
vendored
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
/.env
|
||||||
|
/.idea/
|
||||||
|
|
||||||
|
**/node_modules
|
||||||
|
**/.DS_Store
|
||||||
|
|
||||||
|
/config/config.js
|
||||||
|
|
||||||
|
/public
|
||||||
|
/logs
|
||||||
|
/build
|
||||||
|
/dist
|
||||||
|
/lib
|
||||||
|
rev-manifest.json
|
||||||
|
/yarn.lock
|
||||||
|
/nohup.out
|
||||||
|
/package-lock.json
|
||||||
|
/dist.tar.gz
|
28
package.json
Normal file
28
package.json
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{
|
||||||
|
"name": "spider",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "",
|
||||||
|
"main": "index.js",
|
||||||
|
"babel": {
|
||||||
|
"presets": [
|
||||||
|
"env"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"start": "babel-node src/app.js",
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"author": "zhl",
|
||||||
|
"license": "ISC",
|
||||||
|
"dependencies": {
|
||||||
|
"bluebird": "^3.5.3",
|
||||||
|
"mongoose": "^5.2.15",
|
||||||
|
"request-promise": "^4.2.4",
|
||||||
|
"ws": "^6.1.2"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"babel-cli": "^6.26.0",
|
||||||
|
"babel-preset-env": "^1.4.0",
|
||||||
|
"babel-register": "^6.24.1"
|
||||||
|
}
|
||||||
|
}
|
0
src/app.js
Normal file
0
src/app.js
Normal file
Loading…
x
Reference in New Issue
Block a user