forked from jessehouwing/BattleJSip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.9 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": "battleship",
"version": "1.0.0",
"description": "Battleship case study for scrum.org PSD training",
"private": true,
"scripts": {
"start": "webpack-dev-server",
"build": "webpack -p",
"serve": "http-server dist/ -o -p 5000",
"lint": "eslint --ext .jsx,.js src/",
"lint:fix": "eslint --ext js,jsx src/ --fix",
"test": "jest --watch",
"test-ci": "jest --ci --coverage"
},
"authors": [
"Frank van Wijk <[email protected]>",
"Ruben Oostinga <[email protected]>"
],
"dependencies": {
"babel-jest": "23.6.0",
"react": "16.6.3",
"react-dom": "16.6.3"
},
"devDependencies": {
"@babel/cli": "7.2.0",
"@babel/core": "7.2.0",
"@babel/plugin-proposal-class-properties": "7.2.1",
"@babel/preset-env": "7.2.0",
"@babel/preset-react": "7.0.0",
"add": "2.0.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.4",
"clean-webpack-plugin": "1.0.0",
"css-loader": "2.0.0",
"eslint": "5.10.0",
"eslint-config-prettier": "3.3.0",
"eslint-config-react-app": "3.0.5",
"eslint-plugin-flowtype": "3.2.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-prettier": "3.0.0",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"jest": "23.6.0",
"jest-junit": "5.2.0",
"prettier": "1.15.3",
"regenerator-runtime": "0.13.1",
"style-loader": "0.23.1",
"uglifyjs-webpack-plugin": "2.0.1",
"webpack": "4.27.1",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.10",
"yarn": "1.22.13"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"coverageReporters": [
"text",
"html",
"cobertura"
],
"reporters": [
"default",
"jest-junit"
]
}
}