-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.91 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
{
"name": "douban-trailer",
"version": "1.0.0",
"main": "server/index.ts",
"repository": "https://github.com/B1anker/douban-trailer.git",
"author": "B1anker <[email protected]>",
"license": "MIT",
"scripts": {
"start": "rm -rf dist && NODE_ENV=development nodemon --exec ts-node server/index.ts",
"start:watch": "npm run server:live",
"crawl:list": "ts-node server/tasks/trailer-list.ts",
"crawl:item": "ts-node server/tasks/movie.ts",
"upload": "ts-node server/tasks/qiniu.ts",
"server:live": "nodemon --exec ./node_modules/.bin/ts-node -- server/index.ts",
"build": "rm -rf dist && parcel build client/index.html --no-cache -d dist/ --public-url /"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/koa-router": "^7.0.27",
"@types/lodash": "^4.14.104",
"@types/moment": "^2.13.0",
"@types/mongoose": "^5.0.3",
"@types/react": "^16.0.39",
"@types/react-dom": "^16.0.4",
"@types/react-router-dom": "^4.2.4",
"antd": "^3.2.2",
"axios": "^0.18.0",
"bcrypt": "^1.0.3",
"flyio": "^0.3.1",
"glob": "^7.1.2",
"global": "^4.3.2",
"koa": "^2.4.1",
"koa-router": "^7.4.0",
"lodash": "^4.17.5",
"moment": "^2.20.1",
"mongoose": "^5.0.7",
"puppeteer": "^1.0.0",
"ramda": "^0.25.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"sass-convert": "^0.5.2"
},
"devDependencies": {
"@types/node": "^9.4.0",
"autoprefixer": "^8.0.0",
"chalk": "^2.3.1",
"cssnext": "^1.8.4",
"koa-static": "^4.0.2",
"koa-views": "^6.1.4",
"nanoid": "^1.0.2",
"node-sass": "^4.7.2",
"nodemon": "^1.14.11",
"parcel-bundler": "^1.6.2",
"prettier": "^1.11.0",
"prettier-tslint": "^0.3.0",
"qiniu": "^7.1.2",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.9.0",
"tslint-react": "^3.5.1",
"typescript": "^2.7.2"
}
}