This repository was archived by the owner on Dec 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
81 lines (81 loc) · 2.4 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
{
"name": "boston",
"author": "You!",
"description": "The node.js requirements to build this project.",
"version": "1.0.0",
"repository": {},
"devDependencies": {
"compass-mixins": "^0.12.10",
"compass-options": "^0.1.1",
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-concat": "^2.6.0",
"gulp-debug": "^2.1.2",
"gulp-if": "^2.0.1",
"gulp-jshint": "^2.0.1",
"gulp-load-plugins": "^1.6.0",
"gulp-rename": "^1.2.2",
"gulp-size": "^2.1.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"jshint": "^2.9.6"
},
"engines": {
"node": ">=5.6.0"
},
"private": true,
"//": "The postinstall script is needed to work-around this Drupal core bug: https://www.drupal.org/node/2329453",
"scripts": {
"install-dependencies": "npm install",
"uninstall-dependencies": "rm -r node_modules",
"postinstall": "find node_modules/ -name '*.info' -type f -delete",
"test": "gulp && git status | grep 'working directory clean' >/dev/null || (echo 'Please commit all changes generated by building'; exit 1)",
"build": "gulp",
"build:boston": "gulp",
"build:boston_public": "gulp --public",
"build:boston_hub": "gulp --hub",
"watch": "gulp watch",
"serve": "gulp serve"
},
"dependencies": {
"atob": "^2.1.0",
"debug": "^2.6.9",
"natives": "^1.1.3",
"run-sequence": "^2.2.0"
},
"labtest": {
"app_name": "bostongov",
"host": "test",
"test_domain": "digital-test.boston.gov",
"use_ssh_config": true,
"provider": "aws",
"code_repo_url": "git@github.com:CityOfBoston/boston.gov.git",
"container_build_command": "docker build -t $APP_NAME/$INSTANCE_NAME -f dockerfiles/drupal .",
"environment": [
"DRUPAL_DATABASE_HOST=mysql",
"DRUPAL_BASE_URL=http://$VIRTUAL_HOST",
"DRUPAL_SITE=default"
],
"services": {
"mysql": {
"provider": "docker",
"service": "mysql",
"provision_type": "independent",
"options": {
"initial_data_source": "/backups/bostongov/",
"image": "mysql:5.6",
"commands": [
"--character-set-server=utf8mb4",
"--collation-server=utf8mb4_unicode_ci"
],
"environment": [
"MYSQL_ALLOW_EMPTY_PASSWORD=true",
"MYSQL_DATABASE=drupal"
]
}
}
}
}
}