This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 1.76 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
{
"name": "pa-frontend--boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "12.22.6"
},
"scripts": {
"start": "gulp serve",
"heroku-postbuild": "npm run-script build",
"build": "NODE_ENV=production gulp build",
"build_win": "set NODE_ENV=production&&gulp build",
"test": "jest --verbose --coverage",
"linting": "gulp linting",
"clean": "gulp clean"
},
"dependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"browser-sync": "^2.26.4",
"browserify": "14.1.0",
"del": "2.2.2",
"govuk-frontend": "^3.9.1",
"gulp": "^4.0.2",
"gulp-autoprefixer": "6.1.0",
"gulp-connect-php": "0.0.8",
"gulp-csso": "3.0.0",
"gulp-if": "2.0.2",
"gulp-plumber": "1.1.0",
"gulp-sass": "3.1.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-standard": "^14.0.0",
"gulp-stylelint": "^9.0.0",
"gulp-uglify": "2.0.1",
"gulp-util": "3.0.8",
"gulp-watch": "^5.0.1",
"jest": "^24.7.1",
"lodash": "^4.17.19",
"node-notifier": "5.1.2",
"require-dir": "^0.3.0",
"standard": "^14.3.3",
"stylelint": "^10.0.1",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.6.1",
"vinyl-buffer": "1.0.1",
"vinyl-source-stream": "2.0.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"iOS >=10"
],
"jest": {
"coverageThreshold": {
"global": {
"functions": 80,
"lines": 80
}
}
}
}