-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.56 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.56 KB
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
{
"name": "acn-1",
"version": "0.0.0",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docker:clean": "docker-compose rm -f",
"docker:build": "docker-compose build",
"build": "npm run docker:clean && npm run docker:build",
"rebuild": "npm stop && npm run docker:clean && npm run docker:build",
"start": "docker-compose up -d db anc",
"stop": "docker-compose stop",
"bower:install": "docker-compose run --rm anc /opt/node_modules/.bin/bower -q -s --save --allow-root install",
"cucumber": "docker-compose run --rm cucumber",
"bash": "docker-compose run --rm anc /bin/bash",
"restart": "docker-compose restart anc",
"gulp": "docker-compose run --rm anc /opt/node_modules/.bin/gulp riot",
"rebuild:all" : "npm run rebuild && npm run bower:install && npm run gulp"
},
"dependencies": {
"bluebird": "^3.0.5",
"body-parser": "~1.13.2",
"bower": "^1.6.5",
"chai": "^3.4.1",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.3.5",
"cucumber": "^0.8.1",
"debug": "~2.2.0",
"express": "~4.13.1",
"express-session": "^1.12.1",
"gulp": "^3.9.0",
"jade": "~1.11.0",
"materialize-css": "^0.97.2",
"mocha": "^2.3.3",
"morgan": "~1.6.1",
"passport": "^0.3.0",
"passport-hash": "^0.5.0",
"passport-local": "^1.0.0",
"redux": "^3.0.4",
"riot": "^2.3.1",
"serve-favicon": "~2.3.0",
"zombie": "^4.2.1"
},
"devDependencies": {
"browserify": "^12.0.1",
"riotify": "^0.1.2",
"vinyl-source-stream": "^1.1.0"
}
}