-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
57 lines (57 loc) · 2.14 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
{
"name": "angular-app-server",
"description": "Back end server to support our angular app",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node server.js",
"test": "npm run setup; npm run compile; node ./node_modules/grunt-cli/bin/grunt;",
"t": "node ./node_modules/grunt-cli/bin/grunt",
"setup": "cd tests/socketClientPatched && npm install && cd ../../ && node ./node_modules/component/bin/component install && npm install --prefix ./client/assets/ node-webkit-updater auto-launch",
"client": "node ./node_modules/brunch/bin/brunch build",
"watch": "node ./node_modules/brunch/bin/brunch watch --server",
"build-app": "node ./node_modules/brunch/bin/brunch build;node node_modules/grunt-cli/bin/grunt buildapp --dest=./desktop",
"build-stg": "node ./node_modules/brunch/bin/brunch build;node node_modules/grunt-cli/bin/grunt buildapp --dest=./desktop --forEnv=staging",
"package": "node node_modules/grunt-cli/bin/grunt packageMacZip compress:win compress:linux32 compress:linux64 --src=./desktop --dest=../desktop"
},
"dependencies": {
"async": "~0.2.9",
"auto-reload-brunch": "~1.7.3",
"brunch": "git+https://[email protected]/edjafarov/brunch.git",
"component": "~0.19.9",
"connect": "~2.12.0",
"connect-redis": "~1.4.6",
"engine.io": "~0.8.0",
"engine.io-client": "~0.8.0",
"engine.io-session": "0.0.4",
"express": "~3.4.8",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.9",
"grunt-contrib-compress": "~0.9.1",
"grunt-contrib-copy": "~0.5.0",
"grunt-mocha-test": "~0.8.2",
"grunt-node-webkit-builder": "~0.2.2",
"less-brunch": "~1.7.2",
"library-brunch": "^1.0.2",
"nconf": "latest",
"nock": "~0.27.1",
"node-webkit-updater": "0.2.0",
"parse-redis-url": "0.0.1",
"passport": "~0.1.12",
"passport-github": "~0.1.5",
"react-brunch": "~1.0.6",
"redis": "~0.10.0",
"secure.me": "~0.1.4",
"socker": "~0.1.6",
"underscore": "~1.5.1"
},
"devDependencies": {
"mocha": "~1.12.1",
"chai": "~1.7.2",
"request": "~2.27.0",
"ws": "~0.4.31",
"rewire": "~2.0.0",
"ncp": "*",
"mkdirp": "*"
}
}