-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
92 lines (92 loc) · 2.77 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
{
"name": "reps-js",
"private": false,
"version": "1.0.0",
"description": "A web app for tracking workouts, reps, weights etc",
"keywords": [],
"dependencies": {
"backbone": "1.3.3",
"backbone.localstorage": "^2.0.0",
"backbone.marionette": "^3.0.0",
"backbone.paginator": "^2.0.5",
"backbone.radio": "^2.0.0",
"backbone.syphon": "^0.7.0",
"bcrypt": "^0.8.5",
"googleapis": "^12.4.0",
"hapi": "^12.0.1",
"hapi-auth-jwt2": "^5.3.2",
"icecreambar": "^3.1.0",
"inert": "^3.2.1",
"jquery": "^3.0.0",
"json-parse": "^1.0.3",
"json-stringify": "^1.0.0",
"jsonwebtoken": "^5.5.4",
"lodash": "^4.1.0",
"moment": "^2.15.2",
"pg": "^4.4.3",
"request": "^2.74.0",
"rollbar": "^0.6.0",
"sequelize": "^3.24.3",
"sequelize-cli": "^2.4.0",
"underscore": "^1.8.3",
"underscore-template-loader": "^0.6.0",
"uuid": "^2.0.2",
"validate.js": "^0.9.0",
"validator": "^4.5.0",
"webpack": "^1.12.13",
"window-or-global": "^1.0.1"
},
"scripts": {
"debug": "node debug app.js",
"start": "npm run migrate && node --harmony app.js",
"migrate": "sequelize db:migrate",
"fulltest": "sequelize db:migrate && lab",
"serveassets": "http-server ./assets",
"build": "webpack",
"compile": "webpack -p",
"c": "npm run compile",
"watch": "webpack -w",
"test:server": "lab -I window,localStorage,location,Reflect,__core-js_shared__ -e $NODE_ENV test/api/*",
"test:client": "karma start --single-run",
"test:client:ci": "karma start --single-run --reporters junit",
"test": "snyk test && npm run test:server",
"createdb": "sudo -u postgres createuser -PRd workouts &&sudo -u postgres createdb -O workouts -T template0 -E UTF8 workouts",
"lint": "eslint app api models test"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/scott-w/reps-js.git"
},
"author": "Scott Walton",
"license": "BSD-3-Clause",
"devDependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.5.0",
"bluebird": "^3.2.2",
"code": "^2.1.0",
"eslint": "^2.4.0",
"expect.js": "^0.3.1",
"http-proxy": "^1.13.1",
"http-server": "^0.8.5",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-firefox-launcher": "^0.1.7",
"karma-junit-reporter": "^0.4.1",
"karma-mocha": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.4",
"karma-webpack": "^1.7.0",
"lab": "^8.2.0",
"mocha": "^2.4.5",
"mock-browser": "^0.92.11",
"phantomjs-prebuilt": "^2.1.7",
"proxyquire": "^1.7.10",
"query-string": "^4.2.2",
"sequelize-fixtures": "^0.4.8",
"shot": "^3.0.0",
"sinon": "^1.17.3",
"snyk": "^1.16.0"
}
}