This repository has been archived by the owner on Feb 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.34 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
{
"name": "impequid-dynamic-dns",
"version": "0.0.1",
"description": "Impequid app for CloudFlare-based Dynamic DNS servers.",
"main": "build/",
"scripts": {
"build": "npm run compile --silent && npm run copy --silent && npm run bundle-captcha --silent && npm run bundle-main --silent",
"bundle-main": "webpack --progress --colors build/client/apps/main.js build/client/bundle/main.js",
"bundle-captcha": "webpack --progress --colors build/server/apps/captcha-client.js build/client/bundle/captcha.js",
"copy": "cp -r source/client/styles/ build/client/",
"compile": "babel --plugins transform-async-to-generator --presets es2015,react source/ -d build/",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag $PACKAGE_VERSION && git push --tags",
"start": "node build/server",
"watch": "nodemon -e js,jsx,css,json --watch source/ --exec \"npm run build --silent && npm run start --silent\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/dodekeract/dyndns.git"
},
"keywords": [
"dyndns",
"cloudflare",
"impequid",
"dynamic",
"dns"
],
"author": "Florian Wendelborn",
"license": "MIT",
"bugs": {
"url": "https://github.com/dodekeract/dyndns/issues"
},
"homepage": "https://github.com/dodekeract/dyndns#readme",
"dependencies": {
"babel-polyfill": "^6.9.0",
"cloudflare": "^1.0.1",
"flux": "^2.1.1",
"impequid-api": "0.0.1",
"koa": "^1.2.0",
"koa-body": "^1.4.0",
"koa-generic-session": "^1.10.2",
"koa-generic-session-mongo": "^0.2.5",
"koa-router": "^5.4.0",
"koa-session": "^3.3.1",
"koa-session-mongoose": "^1.0.0",
"koa-static": "^2.0.0",
"lodash": "^4.13.1",
"mongoose": "^4.4.19",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-gcaptcha": "^3.0.0",
"react-mini-router": "^2.0.0",
"react-recaptcha": "^2.1.1",
"react-timeago": "^3.0.0",
"recaptcha-validator": "^1.0.6",
"superagent": "^2.0.0",
"validator": "^5.3.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-preset-react": "^6.5.0",
"webpack": "^1.13.1",
"nodemon": "^1.9.2"
}
}