forked from thoughtworks/build-your-own-radar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.97 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
{
"name": "build-your-own-radar",
"version": "0.3.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "standard --fix && istanbul cover jasmine",
"test:lint": "npx standard",
"dev": "webpack-dev-server --mode development --inline",
"build": "webpack --mode production",
"end_to_end_test": "node_modules/.bin/cypress run --env host=$TEST_URL",
"start": "node_modules/.bin/cypress open --env host=$TEST_URL"
},
"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.2.2",
"babel-loader": "^8.0.4",
"babel-preset-env": "^1.7.0",
"css-loader": "^3.2.1",
"cssnano": "^4.1.7",
"cypress": "^3.7.0",
"dotenv": "^8.2.0",
"expose-loader": "^0.7.5",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"istanbul": "^0.4.5",
"jasmine": "^3.3.1",
"jsdom": "^15.2.1",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.5.0",
"mocha": "^5.2.0",
"mochawesome": "^4.1.0",
"node-sass": "^4.13.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"sass-loader": "^8.0.0",
"standard": "^14.3.1",
"style-loader": "^1.0.1",
"tar": ">=5.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"xmlhttprequest": "^1.8.0",
"yargs": "^15.0.2"
},
"dependencies": {
"chance": "^1.0.18",
"d3": "^5.14.2",
"d3-tip": "^0.7.1",
"jquery": "^3.4.0",
"jquery-ui": "^1.12.1",
"lodash": "^4.17.15",
"sanitize-html": "^1.20.0",
"tabletop": "^1.6.2"
},
"peerDependencies": {
"mocha": "*"
},
"standard": {
"globals": [
"Cypress",
"cy",
"XMLHttpRequest"
],
"env": [
"jasmine",
"mocha"
],
"ignore": [
"radar-spec.js",
"ref-table-spec.js"
]
}
}