This repository has been archived by the owner on Jun 23, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.11 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
{
"name": "loonaverse.co",
"description": "The source for loonaverse.co",
"version": "0.0.1",
"author": {
"name": "Zac Anger",
"email": "[email protected]",
"url": "http://zacanger.com"
},
"license": "MIT",
"main": "server/index.js",
"scripts": {
"build": "webpack-cli -p",
"prebuild": "npm t && sortpack",
"start": "nodemon --watch server/ --watch public/ server/index.js",
"test": "npm run test:lint",
"test:lint": "eslint -c .eslintrc.json client server"
},
"homepage": "http://loonaverse.co",
"repository": {
"type": "git",
"url": "https://github.com/zacanger/loonaverse.co.git"
},
"bugs": "https://github.com/zacanger/loonaverse.co/issues",
"keywords": [
"loona",
"loonaverse.co"
],
"dependencies": {
"@babel/polyfill": "7.4.3",
"emotion": "10.0.9",
"forever": "1.0.0",
"koa": "2.7.0",
"koa-compress": "3.0.0",
"koa-ctx-cache-control": "1.0.1",
"koa-favicon": "2.0.1",
"koa-helmet": "4.1.0",
"koa-lowercase": "1.3.1",
"koa-router": "7.4.0",
"koa-simple-static": "2.0.3",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-emotion": "10.0.0",
"tumblr.js": "2.0.0",
"twitter": "1.7.1",
"whatwg-fetch": "3.0.0",
"zeelib": "8.6.0"
},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-object-rest-spread": "7.4.3",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.4.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"eslint": "5.16.0",
"eslint-config-zacanger": "3.4.2",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-unicorn": "8.0.2",
"nodemon": "1.18.11",
"prop-types": "15.7.2",
"sortpack": "1.1.4",
"webpack": "4.30.0",
"webpack-cli": "3.3.1"
},
"engines": {
"node": ">=10.12.0"
},
"private": true
}