-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 3 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
{
"name": "js-boilerplate",
"version": "1.3.0",
"author": "Tiago Marques",
"description": "Boilerplate for any javascript frontend project",
"keywords": [
"javascript",
"frontend",
"boilerplate",
"seed",
"typescript",
"jquery",
"react",
"inferno",
"vue",
"web-components"
],
"repository": "https://github.com/tiagomapmarques/js-boilerplate",
"license": "MIT",
"engines": {
"node": ">=10.15.0",
"yarn": ">=1.16.0"
},
"engineStrict": true,
"scripts": {
"build": "yarn build:local",
"build:dev": "webpack --progress --bail --env dev",
"build:dev:watch": "yarn build:dev --watch --serve --open --spa",
"build:local": "webpack --progress --bail --env local",
"build:local:watch": "yarn build:local --watch --serve --open --spa",
"build:prod": "webpack --progress --bail --env prod",
"build:prod:watch": "yarn build:prod --watch --serve --open --spa",
"lint": "yarn lint:code && yarn lint:tests",
"lint:fix": "yarn lint:code -f && yarn lint:tests -f",
"lint:code": "biotope-quality-gate -c ./lint.config.js -p src/app,config,types,./*.js",
"lint:tests": "biotope-quality-gate -t -p src/app,src/testing",
"serve": "node ./config/common/serve",
"start": "yarn watch",
"test": "jest --config jest.config.js",
"test:no-cache": "yarn test --no-cache",
"test:watch": "yarn test --watchAll",
"watch": "yarn build:local:watch"
},
"dependencies": {
"@babel/core": "~7.6",
"@babel/plugin-proposal-class-properties": "~7.5",
"@babel/plugin-proposal-decorators": "~7.6",
"@babel/preset-env": "~7.6",
"@babel/preset-typescript": "~7.6",
"@babel/register": "~7.6",
"autoprefixer": "~9.6",
"babel-loader": "~8.0",
"babel-plugin-module-resolver": "~3.2",
"browser-polyfills": "~1.5",
"clean-webpack-plugin": "~3.0",
"copy-webpack-plugin": "~5.0",
"critical": "~1.3",
"critical-css-webpack-plugin": "~0.2",
"css-loader": "~3.2",
"dotenv": "~8.1",
"extended-define-webpack-plugin": "~0.1",
"favicons-webpack-plugin": "~1.0",
"glob": "~7.1",
"html-webpack-plugin": "~3.2",
"load-entry": "~1.1",
"loader-utils": "~1.2",
"manifest-json-webpack-plugin": "~1.0",
"mini-css-extract-plugin": "~0.8",
"node-sass": "~4.12",
"postcss-loader": "~3.0",
"prerender-spa-plugin": "~3.4",
"raw-loader": "~3.1",
"reduce-flatten": "~3.0",
"sass-loader": "~8.0",
"url-loader": "~2.1",
"webpack": "~4.41",
"webpack-cli": "~3.3"
},
"devDependencies": {
"@biotope/quality-gate": "1.0.0-beta.14",
"@types/jest": "~24.0",
"@types/node": "~12.7",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "~24.9",
"eslint-plugin-jest": "~22.17",
"get-port": "~5.0",
"jest": "~24.9",
"jest-css-modules-transform": "~2.5",
"jest-fetch-mock": "~2.1",
"local-web-server": "~3.0",
"open": "~6.4",
"synchronized-promise": "~0.2",
"typescript": "~3.6",
"webpack-livereload-plugin": "~2.2"
}
}