-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
185 lines (185 loc) · 6.96 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
{
"name": "gitnation-live-conferences",
"version": "1.0.0",
"scripts": {
"build": "gulp build --production",
"build:c3": "CONF_CODE=c3 yarn build",
"build:jsn": "CONF_CODE=jsn yarn build",
"build:jsnus": "CONF_CODE=jsnus yarn build",
"build:jsny": "CONF_CODE=jsny yarn build",
"build:jsnl": "CONF_CODE=jsnl yarn build",
"build:gqconf": "CONF_CODE=gqconf yarn build",
"build:mlconf": "CONF_CODE=mlconf yarn build",
"build:qaconf": "CONF_CODE=qaconf yarn build",
"build:doconf": "CONF_CODE=doconf yarn build",
"build:nodeconf": "CONF_CODE=nodeconf yarn build",
"build:rs": "CONF_CODE=rs yarn build",
"build:rsre": "CONF_CODE=rsre yarn build",
"build:radv": "CONF_CODE=radv yarn build",
"build:vjsl": "CONF_CODE=vjsl yarn build",
"build:wgds": "CONF_CODE=wgds yarn build",
"build:tsc": "CONF_CODE=tsc yarn build",
"build:rdb": "CONF_CODE=rdb yarn build",
"build:remix": "CONF_CODE=remix yarn build",
"build:tljs": "CONF_CODE=tljs yarn build",
"build:rsus": "CONF_CODE=rsus yarn build",
"build:dummy": "CONF_CODE=dummy yarn build",
"build:pc": "concurrently --max-processes 3 'CONF_CODE=pc yarn build' 'CONF_CODE=pc-dev yarn build && mkdir -p build/pc/developers && cp -r build/pc-dev/* build/pc/developers/' 'CONF_CODE=pc-mkt yarn build && mkdir -p build/pc/marketing && cp -r build/pc-mkt/* build/pc/marketing/'",
"start": "gulp",
"start:c3": "CONF_CODE=c3 yarn start",
"start:jsn": "CONF_CODE=jsn yarn start",
"start:jsnus": "CONF_CODE=jsnus yarn start",
"start:jsnl": "CONF_CODE=jsnl yarn start",
"start:jsny": "CONF_CODE=jsny yarn start",
"start:gqconf": "CONF_CODE=gqconf yarn start",
"start:mlconf": "CONF_CODE=mlconf yarn start",
"start:qaconf": "CONF_CODE=qaconf yarn start",
"start:doconf": "CONF_CODE=doconf yarn start",
"start:nodeconf": "CONF_CODE=nodeconf yarn start",
"start:rs": "CONF_CODE=rs yarn start",
"start:rsre": "CONF_CODE=rsre yarn start",
"start:radv": "CONF_CODE=radv yarn start",
"start:vjsl": "CONF_CODE=vjsl yarn start",
"start:wgds": "CONF_CODE=wgds yarn start",
"start:tsc": "CONF_CODE=tsc yarn start",
"start:rdb": "CONF_CODE=rdb yarn start",
"start:remix": "CONF_CODE=remix yarn start",
"start:tljs": "CONF_CODE=tljs yarn start",
"start:rsus": "CONF_CODE=rsus yarn start",
"start:dummy": "CONF_CODE=dummy yarn start",
"start:pc": "CONF_CODE=pc yarn start",
"start:pc-dev": "CONF_CODE=pc-dev yarn start",
"start:pc-mkt": "CONF_CODE=pc-mkt yarn start",
"dev": "gulp default --mock",
"dev:func": "./ci/manual/dev.sh",
"test:watch": "yarn jest --watch",
"test:smoke": "jest __tests__/smoke.test.js",
"test:build": "gulp test",
"test:build-update": "gulp test --updateSnapshot",
"precommit": "lint-staged",
"lint": "eslint --cache --format=node_modules/eslint-formatter-pretty .",
"lint-fix": "yarn lint --fix",
"storybook": "start-storybook -p 6006 --ci",
"build-storybook": "build-storybook",
"deploy:storybook": "storybook-to-ghpages",
"deploy:func": "./ci/manual/deploy.sh",
"build-redirects": "cp _redirects build/",
"build-all-brands": "concurrently --max-processes 3 --restart-tries 1 --kill-others-on-fail 'yarn run build:jsn' 'yarn run build:jsny' 'yarn run build:qaconf' 'yarn run build:rs' 'yarn run build:nodeconf' 'yarn run build:radv' 'yarn run build:vjsl' 'yarn run build:wgds' 'yarn run build:tsc' 'yarn run build:rdb' 'yarn run build:remix' 'yarn run build:tljs' 'yarn run build:rsus' 'yarn run build:jsnus' 'yarn run build:pc' 'yarn run build:c3'",
"ci-build-all": "yarn build-all-brands && yarn build-redirects",
"prestart": "relative-deps"
},
"lint-staged": {
"src/templates/**/*.html": [
"htmlhint --config .htmlhintrc"
]
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@focus-reactive/graphql-content-layer": "3.2.3",
"@storybook/addon-actions": "^5.2.8",
"@storybook/addon-console": "^1.2.1",
"@storybook/addon-links": "^5.2.8",
"@storybook/addon-notes": "^5.2.8",
"@storybook/addons": "^5.2.8",
"@storybook/react": "^5.2.8",
"@storybook/storybook-deployer": "^2.8.1",
"autoprefixer": "^8.3.0",
"axios": "^0.19.2",
"babel-eslint": "^7.2.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-runtime": "^5.0.0",
"browser-sync": "^2.26.7",
"chalk": "^3.0.0",
"css-loader": "^3.5.3",
"css-mqpacker": "^6.0.2",
"dayjs": "^1.8.26",
"del": "^3.0.0",
"dotenv": "^8.1.0",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-formatter-pretty": "^1.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-jquery": "^1.5.1",
"gulp": "^3.9.1",
"gulp-changed": "^1.3.0",
"gulp-cheerio": "^0.6.2",
"gulp-consolidate": "^0.2.0",
"gulp-data": "^1.3.1",
"gulp-filter": "^5.1.0",
"gulp-front-matter": "^1.3.0",
"gulp-git": "^2.0.1",
"gulp-if": "^2.0.0",
"gulp-include": "^2.0.3",
"gulp-minify": "^3.1.0",
"gulp-notify": "^3.2.0",
"gulp-nunjucks-render": "^2.2.3",
"gulp-plumber": "^1.0.1",
"gulp-postcss": "^7.0.1",
"gulp-prettify": "^0.5.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-svgmin": "^1.2.0",
"gulp-svgstore": "^5.0.5",
"gulp-util": "^3.0.7",
"gulp-wait": "^0.0.2",
"htmlhint": "^0.11.0",
"husky": "^0.14.3",
"jest": "^24.9.0",
"jest-snapshot": "^24.9.0",
"jquery": "^3.4.1",
"lint-staged": "^7.0.4",
"lodash": "^4.17.15",
"lost": "^7.1.0",
"map-stream": "^0.0.7",
"postcss-csso": "^3.0.0",
"prettier": "^2.2.1",
"query-string": "^6.13.1",
"react-json-view": "^1.19.1",
"regenerator-runtime": "^0.13.3",
"relative-deps": "^0.2.0",
"require-dir": "^1.0.0",
"require-yaml": "^0.0.1",
"run-sequence": "^2.2.1",
"style-loader": "^1.2.1",
"through2": "^2.0.1",
"webpack": "^4.6.0",
"webpack-cli": "^3.3.11",
"webpack-glsl-loader": "^1.0.1"
},
"engines": {
"node": "^10.0.0"
},
"dependencies": {
"@fancyapps/fancybox": "^3.5.7",
"@focus-reactive/inline-edit": "^1.0.0",
"@focus-reactive/react-app-layer": "1.3.11",
"@sentry/browser": "^6.11.0",
"@sentry/tracing": "^6.11.0",
"concurrently": "^5.2.0",
"gsap": "^3.12.2",
"gulp-clean-css": "^4.3.0",
"gulp-hash": "^4.2.2",
"gulp-hash-references": "^3.0.1",
"js-yaml": "^3.12.1",
"luxon": "^1.24.1",
"netlify-cli": "^2.48.0",
"static-google-map": "^0.0.4",
"svg4everybody": "^2.1.9",
"swiper": "^5.4.5",
"web-vitals": "^2.1.0",
"webpack-bundle-analyzer": "^3.8.0"
},
"relativeDependencies": {
"@focus-reactive/graphql-content-layer": "../graphql-content-layer/",
"@focus-reactive/react-app-layer": "../react-app-layer/"
},
"volta": {
"node": "10.24.1",
"yarn": "1.22.22"
}
}