-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.21 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
{
"repository": "https://github.com/codingdavinci/relaunch2018/",
"license": "GPL-2.0-only",
"devDependencies": {
"chalk": "^4.1.2",
"chokidar": "^3.5.2",
"cross-env": "^7.0.3",
"cypress": "^8.6.0",
"del": "^6.0.0",
"eslint": "^8.0.1",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"glob": "^7.2.0",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-header": "^2.0.9",
"gulp-replace": "^1.1.3",
"gulp-sass": "^5.0.0",
"merge-stream": "^2.0.0",
"minimist": "^1.2.5",
"node-sass-import-once": "^1.2.0",
"path": "^0.12.7",
"prettier": "^2.4.1",
"sass": "^1.43.4",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-no-browser-hacks": "^1.2.1",
"stylelint-order": "^4.1.0",
"yarn-upgrade-all": "^0.5.4"
},
"scripts": {
"build": "yarn build:css && yarn build:js",
"build:css": "gulp",
"build:js": "node ./web/core/scripts/js/babel-es6-build.js",
"build:js-dev": "cross-env NODE_ENV=development node ./web/core/scripts/js/babel-es6-build.js",
"lint:js": "eslint \"web/themes/custom/**/*.es6.js\" \"web/modules/custom/**/*.es6.js\"",
"lint:scss": "stylelint \"web/themes/custom/**/*.scss\" \"web/modules/custom/**/*.scss\"",
"watch:js": "node ./web/core/scripts/js/babel-es6-watch.js",
"watch:js-dev": "cross-env NODE_ENV=development node ./web/core/scripts/js/babel-es6-watch.js",
"cy:live": "npx cypress run --spec 'cypress/integration/live/*.spec.js'",
"cy:test": "npx cypress run --spec 'cypress/integration/testing/*.spec.js' --env user=$USER,password=$PASSWORD"
},
"babel": {
"presets": [
[
"env",
{
"modules": false,
"targets": {
"browsers": [
"ie >= 9",
"edge >= 13",
"firefox >= 5",
"opera >= 12",
"safari >= 5",
"chrome >= 56"
]
}
}
]
]
}
}