-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
94 lines (94 loc) · 3.06 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
{
"name": "cargocms",
"private": true,
"version": "1.0.0",
"description": "Cargo CMS",
"author": "Trunk Studio <[email protected]>",
"contributors": [
{
"name": "Kyle Lin",
"email": "[email protected]"
}
],
"license": "MIT",
"keywords": [],
"dependencies": {
"babel-plugin-syntax-async-functions": "^6.1.4",
"babel-plugin-transform-regenerator": "^6.1.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.1.4",
"bcrypt": "^0.8.7",
"ejs": "~0.8.4",
"express-helpers": "^1.3.2",
"fb": "^1.1.1",
"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",
"hashids": "^1.1.0",
"include-all": "~0.1.3",
"jade": "^1.11.0",
"mysql": "^2.9.0",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-local": "^1.0.0",
"rc": "~0.5.0",
"sails": "^0.12.0",
"sails-auth": "^1.3.1",
"sails-disk": "~0.10.0",
"sails-hook-autoreload": "^0.13.2",
"sails-hook-sequelize": "^1.0.1",
"sqlite3": "^3.1.1",
"tracer": "0.8.3",
"validator": "^4.3.0"
},
"scripts": {
"debug": "node debug app.js",
"test": "grunt test",
"test-junit": "mocha test",
"build": "npm i && node_modules/grunt-cli/bin/grunt build",
"start": "node app.js",
"pm2-start": "pm2 start -f app.js --name 'cargocms'",
"pm2-stop": "pm2 stop cargocms",
"start-prod": "NODE_ENV=production node app.js",
"build-prod": "grunt prod",
"build-docker-env": "docker build -t agileworks/sails_sample_env dockers/node",
"build-docker-prod-image": "docker build -t agileworks/sails_sample_prod .",
"build-docker": "docker-compose run --rm buildDev",
"test-docker": "docker-compose run --rm test",
"start-docker": "docker-compose up -d dev",
"stop-docker": "docker-compose stop dev",
"build-prod-docker": "docker-compose run --rm buildPord",
"build-prod-docker-images": "docker build -t trunk/sails .",
"start-mysql-docker": "docker-compose up -d mysql",
"start-web-docker": "docker rm -f web || true && docker run -d --link mysql -p 1337:1337 --restart always --name web trunk/sails",
"start-prod-docker": "npm run start-mysql-docker && npm run start-web-docker"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/trunk-studio/cargocms.git"
},
"devDependencies": {
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.4.1",
"grunt-bower-task": "^0.4.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-sass": "^0.9.2",
"grunt-mocha-istanbul": "^3.0.1",
"istanbul": "^0.4.0",
"mocha": "^2.3.4",
"mocha-junit-reporter": "^1.11.1",
"sinon": "^1.17.2",
"supertest": "^1.2.0",
"supertest-as-promised": "^2.0.2"
}
}