This repository was archived by the owner on Oct 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.96 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.96 KB
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
{
"name": "autokitty",
"version": "0.0.1",
"description": "This kitty sorts out your complicated group expenses",
"scripts": {
"postinstall": "npm run bundle && npm run uglify && npm run gzip",
"start": "babel-node --stage 0 index.js",
"start:dev": "NODE_ENV=development PORT=3000 npm start",
"watch:server": "nodemon --watch index.js --watch server --watch db --ext js,json,hbs --exec 'npm run start:dev'",
"watch:client": "npm run clean && WATCHIFY=true NODE_ENV=development babel-node --stage 0 browserify.js",
"bundle": "npm run clean && NODE_ENV=production babel-node --stage 0 browserify.js",
"uglify": "uglifyjs static/main.bundle.js -o static/main.bundle.js -m -c warnings=false",
"gzip": "babel-node --stage 0 gzip.js",
"test": "babel-node --stage 0 test.js",
"lint": "eslint .",
"clean": "mkdir -p static && rm -rf static/main.bundle.js*"
},
"dependencies": {
"babel": "5.8.21",
"babel-core": "5.8.22",
"babel-eslint": "4.0.10",
"babel-runtime": "5.8.20",
"babelify": "6.2.0",
"browserify": "11.0.1",
"co-body": "4.0.0",
"envify": "3.4.0",
"eslint": "1.2.1",
"eslint-config-standard": "4.1.0",
"eslint-config-standard-react": "1.0.4",
"eslint-plugin-react": "3.2.3",
"eslint-plugin-standard": "1.2.0",
"handlebars": "3.0.3",
"isomorphic-fetch": "2.1.1",
"jasmine": "2.3.2",
"jasmine-spec-reporter": "2.4.0",
"jsdom": "6.2.0",
"koa": "1.0.0",
"koa-route": "2.4.2",
"koa-static": "1.4.9",
"memdown": "1.0.0",
"nodemon": "1.4.1",
"page": "1.6.3",
"path-to-regexp": "1.2.1",
"pouchdb": "4.0.0",
"pouchdb-upsert": "1.1.3",
"proxyquire": "1.7.1",
"react": "0.13.3",
"react-redux": "1.0.0",
"redux": "1.0.1",
"reselect": "0.0.2",
"rx-lite": "3.1.1",
"shortid": "2.2.2",
"to-slug-case": "0.1.2",
"uglify-js": "2.4.24",
"watchify": "3.3.1"
},
"engines": {
"iojs": "3.1.0",
"npm": "2.13.2"
}
}