This repository has been archived by the owner on Nov 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.99 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
{
"name": "ontap",
"version": "0.1.0",
"description": "beer at cc",
"engines": {
"node": ">=6.5.0"
},
"main": "src/main.js",
"scripts": {
"build": "pack -r -m --src client/src --main main.js -d client/dist",
"db-cli": "node server/bin/db",
"dev": "nodemon server/index --ignore client",
"lint": "eslint client/src",
"start": "node server/index",
"test": "mocha --reporter dot server/test",
"watch": "pack -r -m -w --src client/src --main main.js -d client/dist --proxy 4000",
"migrate": "sequelize db:migrate",
"migrate:undo": "sequelize db:migrate:undo",
"sequelize": "sequelize"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commoncode/ontap.git"
},
"author": "Common Code",
"license": "MIT",
"bugs": {
"url": "https://github.com/commoncode/ontap/issues"
},
"homepage": "https://github.com/commoncode/ontap#readme",
"dependencies": {
"app-module-path": "^2.1.0",
"autobind-decorator": "^1.4.0",
"body-parser": "^1.15.2",
"connect-session-sequelize": "^3.2.0",
"cookie-parser": "^1.4.3",
"dotenv": "^2.0.0",
"dotenv-safe": "^2.3.2",
"express": "^4.14.0",
"express-session": "^1.14.1",
"flux": "^3.1.0",
"immutable": "^3.8.1",
"lodash": "^4.17.4",
"morgan": "^1.7.0",
"normalize.css": "^4.2.0",
"pack-cli": "^1.4.5",
"passport": "^0.3.2",
"passport-google-oauth20": "^1.0.0",
"react": "^15.3.2",
"recompose": "^0.20.2",
"sequelize": "^3.24.3",
"sequelize-cli": "^2.5.1",
"sqlite3": "^3.1.6",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^7.2.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"chai": "^3.5.0",
"eslint": "^3.6.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"mocha": "^3.1.0",
"nodemon": "^1.11.0",
"prop-types": "^15.5.10",
"supertest": "^2.0.0"
}
}