forked from thoughtworks/build-your-own-radar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.22 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
{
"name": "build-your-own-radar",
"version": "0.3.0",
"description": "",
"main": "index.js",
"scripts": {
"build:dev": "webpack --mode development --config webpack.dev.js",
"build:prod": "webpack --mode production --config webpack.prod.js",
"dev": "webpack-dev-server --mode development --config webpack.dev.js",
"test": "jasmine",
"test:e2e": "cypress run --env host=$TEST_URL",
"lint-prettier:check": "eslint . && prettier --check .",
"lint-prettier:fix": "eslint . --fix && prettier --write .",
"start": "cypress open --env host=$TEST_URL,TEST_ENV=$TEST_ENV",
"coverage": "nyc npm run test",
"quality": "npm run lint-prettier:check && npm run coverage"
},
"author": "Thoughtworks",
"repository": {
"type": "git",
"url": "https://github.com/thoughtworks/build-your-own-radar"
},
"keywords": [
"tech-radar"
],
"license": "AGPL-3.0",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.3",
"css-loader": "^6.7.1",
"cssnano": "^5.1.1",
"cypress": "^9.5.1",
"dotenv": "^16.0.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jasmine": "^4.1.3",
"expose-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"jasmine": "^4.0.2",
"jsdom": "^19.0.0",
"mini-css-extract-plugin": "^2.6.0",
"mochawesome": "^7.1.2",
"sass": "^1.53.0",
"nyc": "^15.1.0",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.4.2",
"prettier": "^2.5.1",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"yargs": "^17.3.1"
},
"dependencies": {
"chance": "^1.1.8",
"d3": "^7.3.0",
"d3-tip": "^0.9.1",
"jquery": "^3.6.0",
"jquery-ui": "^1.13.1",
"lodash": "^4.17.21",
"sanitize-html": "^2.7.0"
},
"standard": {
"globals": [
"Cypress",
"cy",
"XMLHttpRequest"
],
"env": [
"jasmine"
],
"ignore": [
"radar-spec.js",
"ref-table-spec.js"
]
},
"engines": {
"node": ">=12 <18",
"npm": "~8.3.1"
},
"private": true
}