-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.2 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
{
"name": "fv-react-engine",
"version": "0.1.0",
"description": "React boilerplate that is used with the Software Engineering Course at the Faroe Islands University, a React Game Engine Boilerplate.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --mode development",
"headless": "webpack-dev-server --mode development --host 0.0.0.0 --port 8080 --inline",
"build": "webpack --mode production",
"test": "jest",
"dev:test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jbiskur/fv-react-engine.git"
},
"keywords": [
"react",
"webpack",
"babel",
"boilerplate"
],
"author": "Julius Biskopstø <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jbiskur/fv-react-engine/issues"
},
"homepage": "https://github.com/jbiskur/fv-react-engine#readme",
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/preset-env": "7.2.3",
"@babel/preset-react": "7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"babel-loader": "8.0.5",
"css-loader": "2.1.0",
"eslint": "5.12.0",
"eslint-loader": "2.1.1",
"eslint-plugin-react": "7.12.3",
"file-loader": "3.0.1",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"jest": "23.6.0",
"jest-dom": "^3.0.0",
"node-sass": "4.11.0",
"prop-types": "15.6.2",
"react-testing-library": "^5.4.4",
"regenerator-runtime": "0.13.1",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"test-component-builder": "^0.2.3",
"webpack": "4.28.4",
"webpack-cli": "3.2.1",
"webpack-dev-server": "3.1.14"
},
"dependencies": {
"react": "16.7.0",
"react-dom": "16.7.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}