This repository has been archived by the owner on Jun 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.02 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
96
97
98
{
"name": "npm-addict",
"displayName": "npm addict",
"version": "0.12.11",
"description": "Your daily injection of npm packages",
"keywords": [
"new",
"npm",
"packages",
"published",
"real time",
"tracker",
"list"
],
"author": "Manuel Vila <[email protected]>",
"license": "MIT",
"private": true,
"reveal": false,
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/mvila/npm-addict"
},
"scripts": {
"build": "node frontend build",
"deploy": "git checkout production && git merge master --message \"Merge branch 'master' into 'production'\" && git push && git checkout master",
"release": "git checkout --quiet master && yarn run lint && yarn version && git push --follow-tags",
"start": "forever backend start & forever frontend start",
"start-and-fetch": "node backend start --fetch & node frontend start",
"lint": "eslint .",
"test": "echo \"Warning: no test specified\" && exit 0",
"watch": "node frontend build --watch & nodemon --ignore frontend backend start --no-fetch & nodemon --ignore backend --ignore frontend/src --ignore frontend/dist frontend start"
},
"dependencies": {
"autotrack": "^1.0.3",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"babelify": "^7.3.0",
"better-node-env": "^1.0.3",
"browserify": "^13.3.0",
"changes-stream": "^2.2.0",
"denodeify": "^1.2.1",
"easy-aws": "^0.4.3",
"easy-notifier": "^0.3.4",
"event-emitter-mixin": "^0.3.7",
"follow": "^1.1.0",
"forever": "^0.15.3",
"github-url-to-object": "^2.2.6",
"has-chinese": "^0.1.0",
"idgen": "^2.0.2",
"isomorphic-fetch": "^2.2.1",
"json-web-storage": "^1.0.9",
"koa": "^2.0.0-alpha.7",
"koa-convert": "^1.2.0",
"koa-cors": "0.0.16",
"koa-rewrite": "^1.1.1",
"koa-router": "^7.1.0",
"koa-static-cache": "^3.2.0",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"moment": "^2.17.1",
"nano": "^9.0.5",
"ncp": "^2.0.0",
"nice-package": "^3.0.1",
"object-layer": "^0.5.3",
"radium": "^0.18.1",
"radium-starter": "^0.9.9",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-icons": "^2.2.3",
"rimraf": "^2.5.4",
"rss": "^1.2.2",
"sleep-promise": "^2.0.0",
"strict-uri-encode": "^2.0.0",
"terser": "^5.9.0",
"twit": "^2.2.5",
"uglify-js": "^2.7.5",
"universal-analytics": "^0.4.8",
"universal-log": "^0.3.10",
"url-regex": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.13.1",
"eslint-config-next": "^0.1.15",
"eslint-plugin-react": "^6.9.0",
"node-watch": "^0.4.1",
"nodemon": "^1.11.0",
"watchify": "^3.8.0"
}
}