-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
88 lines (88 loc) · 2.58 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
{
"name": "cardboard-butler",
"version": "2.0.0",
"description": "Find the boardgames from BGG to play",
"keywords": [
"react",
"webpack",
"typescript",
"sass",
"bgg",
"boardgames"
],
"author": "Philip Kristoffersen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PhilipK/CardboardButler.git"
},
"bugs": {
"url": "https://github.com/PhilipK/CardboardButler/issues"
},
"jest": {
"testEnvironment": "node"
},
"homepage": "https://github.com/PhilipK/CardboardButler",
"scripts": {
"build": "yarn run clean-dist && webpack -p --config=configs/webpack/prod.js",
"clean-dist": "rm -f -r -d dist",
"lint": "tslint './src/**/*.ts*' --format stylish --force",
"start": "yarn run start-dev",
"start-dev": "webpack-dev-server --config=configs/webpack/dev.js",
"start-prod": "yarn run build && node express.js",
"test-coverage": "jest --watch --watchAll --coverage --verbose",
"test": "jest --watch",
"test-ci": "jest --coverage --ci --reporters=default --reporters=jest-junit"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@hot-loader/react-dom": "^16.9.0",
"@testing-library/jest-dom": "^4.1.0",
"@testing-library/react": "^9.1.4",
"@types/fetch-mock": "^7.3.1",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.4",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"express": "^4.17.1",
"fetch-mock": "^7.3.9",
"fetchmock": "^1.0.1",
"file-loader": "^4.2.0",
"fs": "^0.0.1-security",
"html-webpack-plugin": "^3.2.0",
"ignore-styles": "^5.0.1",
"image-webpack-loader": "^6.0.0",
"import-local": "^3.0.2",
"jest": "^24.9.0",
"jest-junit": "^8.0.0",
"node-fetch": "^2.6.1",
"node-sass": "^4.13.1",
"react-hot-loader": "^4.12.12",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"tslint": "^5.19.0",
"typescript": "^3.6.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"webpack-dev-middleware": "^3.7.1",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.2",
"whatwg-fetch": "^3.0.0",
"yarn-upgrade-all": "^0.5.2"
},
"dependencies": {
"fast-memoize": "^2.5.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"semantic-ui-react": "^0.88.0",
"ts-jest": "^24.0.2",
"xml-js": "^1.6.11"
}
}