forked from id-sk/id-sk-frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
119 lines (119 loc) · 3.52 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
{
"private": true,
"name": "idsk-frontend-repository",
"description": "Used only for the development of ID-SK Frontend, see `package/package.json` for the published `package.json`",
"engines": {
"node": "10.15.1"
},
"license": "MIT",
"scripts": {
"preinstall": "node bin/check-nvmrc.js",
"prestart": "node bin/check-nvmrc.js",
"start": "gulp dev",
"heroku": "gulp copy-assets && gulp copy:appAssets && gulp sassdoc && node app/start.js",
"pre-release": "node bin/check-nvmrc.js && ./bin/pre-release.sh",
"release": "node bin/check-nvmrc.js && ./bin/release.sh",
"release-to-branch": "node bin/check-nvmrc.js && ./bin/release-to-branch.sh",
"build:package": "node bin/check-nvmrc.js && gulp build:package --destination 'package' && npm run test:build:package",
"build:dist": "node bin/check-nvmrc.js && gulp build:dist --destination 'dist' && npm run test:build:dist",
"test": "npm run test:dependencies && standard && gulp test && gulp copy-assets && jest --testPathIgnorePatterns='after-*'",
"test:dependencies": "npm ls --depth=0",
"test:build:package": "jest tasks/gulp/__tests__/after-build-package.test.js",
"test:build:dist": "jest tasks/gulp/__tests__/after-build-dist.test.js"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.1",
"acorn": "6.1.1",
"autoprefixer": "9.5.1",
"body-parser": "1.18.3",
"cheerio": "1.0.0-rc.3",
"cookie-parser": "1.4.4",
"cssnano": "4.1.10",
"del": "5.0.0",
"eslint": "6.1.0",
"express": "4.16.4",
"express-validator": "5.3.1",
"front-matter": "3.0.2",
"glob": "7.1.4",
"govuk_frontend_toolkit": "8.1.0",
"govuk_template_jinja": "0.25.0",
"govuk-elements-sass": "3.1.3",
"gulp": "4.0.2",
"gulp-better-rollup": "3.1.0",
"gulp-changed": "4.0.0",
"gulp-data": "1.3.1",
"gulp-debug": "4.0.0",
"gulp-eol": "0.2.0",
"gulp-filter": "6.0.0",
"gulp-if": "2.0.2",
"gulp-nunjucks": "5.0.0",
"gulp-plumber": "1.2.1",
"gulp-postcss": "8.0.0",
"gulp-rename": "1.4.0",
"gulp-sass": "4.0.2",
"gulp-sass-lint": "1.4.0",
"gulp-task-listing": "1.1.0",
"gulp-to-markdown": "1.0.0",
"gulp-uglify": "3.0.2",
"html5shiv": "3.7.3",
"jest": "24.8.0",
"jest-axe": "3.1.1",
"jest-puppeteer": "4.3.0",
"jest-serializer-html": "6.0.0",
"jquery": "1.12.4",
"js-yaml": "3.13.1",
"map-stream": "0.0.7",
"marked": "0.6.2",
"merge-stream": "2.0.0",
"node-sass": "^4.14.1",
"nodemon": "1.18.11",
"oldie": "1.3.0",
"outdent": "0.7.0",
"postcss-pseudo-classes": "0.2.0",
"postcss-scss": "2.0.0",
"puppeteer": "1.14.0",
"recursive-readdir": "2.2.2",
"request": "2.88.0",
"sass-color-helpers": "2.1.1",
"sassdoc": "^2.7.3",
"shuffle-seed": "1.1.6",
"standard": "13.1.0",
"vinyl-paths": "2.1.0",
"yargs": "13.2.2"
},
"optionalDependencies": {
"fsevents": "*"
},
"browserslist": [
">0.1%",
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"last 2 Samsung versions",
"Safari >= 9",
"ie 8-11",
"iOS >= 9"
],
"standard": {
"globals": [
"page",
"browser",
"context",
"jestPuppeteer"
],
"ignore": [
"/dist/**/*.js",
"/package/**/*.js",
"/src/govuk/vendor/polyfills/**/*.js"
]
},
"jest": {
"preset": "jest-puppeteer",
"setupFilesAfterEnv": [
"./config/jest-setup.js"
],
"snapshotSerializers": [
"jest-serializer-html"
]
}
}