-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
120 lines (120 loc) · 3.83 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "Sails-Mongoose-ES6-React-boilerplate",
"private": true,
"version": "0.0.0",
"description": "a Sails application",
"keywords": [],
"scripts": {
"start": "nodemon app.js",
"debug": "nodemon debug app.js",
"test": "PORT=9999 NODE_ENV=testing mocha --require babel-core/register ./test/bootstrap.test.js ./test/unit/*.test.js 'test/unit/**/*.test.@(js|jsx)' --timeout 4000",
"test:watch": "npm run test -- --watch",
"test-front-end": "PORT=9999 NODE_ENV=testing mocha --compilers js:babel-core/register ./test/bootstrap.test.js ./test/unit/react/*.test.js 'test/unit/react/**/*.test.@(js|jsx)' --timeout 4000",
"test-front-end:watch": "npm run test-front-end -- --watch",
"functional": "PORT=6969 NODE_ENV=functional _mocha ./test/functional.test.js ./test/functional/*.test.js ./test/functional/**/*.test.js --timeout 7200000"
},
"dependencies": {
"address-validator": "^0.1.4",
"async": "^1.3.0",
"babel-core": "^6.0.17",
"babel-loader": "^6.0.1",
"babel-plugin-syntax-async-functions": "^6.0.14",
"babel-plugin-transform-es2015-modules-commonjs": "^6.0.15",
"babel-plugin-transform-react-constant-elements": "^6.0.14",
"babel-plugin-transform-regenerator": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-polyfill": "^6.0.16",
"babel-preset-react": "^6.3.13",
"bluebird": "^2.9.30",
"chai": "^3.4.0",
"chai-immutable": "^1.5.1",
"chalk": "^1.1.0",
"change-case": "^2.3.0",
"classnames": "^2.2.0",
"cli-clear": "^1.0.4",
"download": "^4.2.1",
"ejs": "~0.8.4",
"faker": "^2.1.5",
"fbjs": "^0.4.0",
"flat": "^1.6.0",
"fs-extra": "^0.20.1",
"geojson-validation": "^0.1.6",
"glob": "^5.0.13",
"grunt": "0.4.2",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-coffee": "~0.10.1",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-cssmin": "~0.9.0",
"grunt-contrib-jst": "~0.6.0",
"grunt-contrib-less": "0.11.1",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-sails-linker": "~0.9.5",
"grunt-sync": "~0.0.4",
"humps": "^0.6.0",
"immutable": "^3.7.5",
"include-all": "~0.1.3",
"is_js": "^0.7.4",
"jade": "^1.11.0",
"kue": "^0.9.3",
"lodash": "^3.10.0",
"machinepack-prompts": "^0.5.0",
"moment": "^2.10.3",
"mongodb": "^2.0.39",
"mongoose": "^4.0.7",
"mongoose-deep-populate": "^2.0.2",
"natural": "^0.2.1",
"object-assign": "^4.0.1",
"objectid": "^3.2.1",
"passport": "^0.2.2",
"path": "^0.11.14",
"querystring": "^0.2.0",
"rc": "~0.5.0",
"react": "^0.14.2",
"react-addons-pure-render-mixin": "^0.14.2",
"react-dom": "^0.14.2",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.0.0",
"react-router": "^1.0.0-rc3",
"redux": "^3.0.4",
"rimraf": "^2.4.3",
"run-sequence": "^1.1.4",
"sails": "~0.11.0",
"sails-disk": "~0.10.0",
"sails-generate-auth": "^0.3.1",
"sails-hook-autoreload": "^0.11.5",
"sails-hook-dotenv": "^0.1.1",
"sails-hook-email": "^0.11.0",
"sails-hook-seed": "^0.2.6",
"sails-mongo": "^0.11.2",
"socket.io": "^1.3.7",
"socket.io-client": "^1.3.7",
"superagent": "^1.2.0",
"superagent-promise": "^1.0.0",
"supertest": "^1.0.1",
"supertest-as-promised": "^2.0.1",
"underscore.string": "^3.1.1",
"uuid": "^2.0.1",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
},
"engines": {
"node": ">=0.12.6"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/austinmao/fomo.git"
},
"author": "austinmao",
"license": "",
"devDependencies": {
"chai-immutable": "^1.5.1",
"jsdom": "^7.0.2",
"mocha": "^2.3.4",
"mocha-clean": "^1.0.0",
"should": "^8.0.1"
}
}