-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
75 lines (75 loc) · 2 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": "chugg",
"version": "1.0.0",
"description": "Jump start your build tools setup with much quickness and simplicity",
"main": "bundle.js",
"scripts": {
"db": "node save-data/mongodb-orm.js",
"prestart": "npm run task",
"start": "node server/server.js",
"start-dev": "npm run task",
"task": "gulp",
"test-fe": "casperjs test test/frontend.js",
"test-be": "mocha test/backend.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamBigGulp/chugg.git"
},
"keywords": [
"build-tools",
"gulp"
],
"author": "TeamBigGulp",
"license": "ISC",
"bugs": {
"url": "https://github.com/TeamBigGulp/chugg/issues"
},
"homepage": "https://github.com/TeamBigGulp/chugg#readme",
"dependencies": {
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babelify": "^7.2.0",
"bootstrap": "^3.3.6",
"browserify": "^10.2.4",
"casperjs": "^1.1.0-beta5",
"codemirror": "^5.12.0",
"cookie-parser": "^1.4.1",
"express": "^4.13.3",
"express-session": "^1.13.0",
"gulp": "^3.9.1",
"gulp-less": "^3.0.5",
"gulp-notify": "^2.2.0",
"jquery": "^2.2.0",
"mongodb": "^2.1.7",
"mongoose": "^4.4.5",
"morgan": "^1.7.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.0.0",
"path": "^0.12.7",
"react": "^0.14",
"react-bootstrap": "^0.28.3",
"react-codemirror": "^0.2.5",
"react-dom": "^0.14.0",
"react-scratchblocks": "^1.1.1",
"request": "^2.69.0",
"superagent": "^1.7.2",
"vinyl-source-stream": "^1.1.0"
},
"devDependencies": {
"body-parser": "^1.15.0",
"chai": "^3.5.0",
"easy-zip": "0.0.4",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^7.0.0",
"eslint-plugin-jsx-a11y": "^1.0.2",
"eslint-plugin-react": "^5.0.1",
"gulp-nodemon": "^2.0.6",
"mocha": "^2.4.5",
"node-mocks-http": "^1.5.1",
"phantomjs": "^2.1.7",
"supertest": "^1.2.0",
"watchify": "^3.2.2"
}
}