forked from Hackifieds/sentimize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 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
68
69
70
71
72
73
74
75
{
"name": "greenfield-project",
"version": "1.0.0",
"description": "Sentimize.",
"author": "chkakaja",
"license": "MIT",
"private": true,
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"postinstall": "curl -s https://raw.githubusercontent.com/hackreactor-labs/pomander/master/bin/install | bash",
"start": "NODE_ENV=development nodemon server/server.js",
"bundle": "watchify client/index.jsx -o client/build/index.bundle.js -v -t [ babelify --presets [ es2015 react ] ]",
"test": "npm run test-server && npm run test-client",
"test-server": "mocha --bail --reporter spec test/server/",
"test-client": "mocha --compilers js:babel-core/register --bail --reporter spec test/client/",
"nyan": "mocha --compilers js:babel-core/register --bail --reporter nyan test/",
"lint": "eslint --format 'node_modules/eslint-friendly-formatter' server client/components clients/index.jsx"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.4.0",
"body-parser": "^1.15.1",
"bookshelf": "^0.9.5",
"chart.js": "^1.1.1",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"express-session": "^1.13.0",
"jade": "^1.11.0",
"jquery": "^2.2.4",
"knex": "^0.11.5",
"moment": "^2.13.0",
"morgan": "^1.7.0",
"mysql": "^2.10.2",
"numeral": "^1.5.3",
"passport": "^0.3.2",
"passport-github2": "^0.1.10",
"passport-local": "^1.0.0",
"react": "^15.1.0",
"react-chartjs": "^0.7.3",
"react-dom": "^15.1.0",
"react-router": "^2.4.1",
"react-webcam": "0.0.12",
"request": "^2.72.0",
"twilio": "^2.9.1"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-require": "^1.0.1",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"eslint": "^2.11.1",
"eslint-friendly-formatter": "^2.0.5",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"jsdom": "^9.2.1",
"mocha": "^2.5.0",
"react-addons-test-utils": "^15.1.0",
"request": "^2.72.0",
"request-promise": "^3.0.0",
"supertest": "^1.2.0",
"watchify": "^3.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/fill_in_here"
}
}