-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.05 KB
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
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "React boilerplate - dockerised, linted and ready to test",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "webpack-dev-server --mode development --hot",
"build": "webpack --mode production",
"lint": "eslint --ext .js,.jsx src/",
"build-docker-img": "yarn build && ./internals/build/build-docker-img.sh"
},
"repository": "git+https://github.com/maxhilliard/react-boilerplate.git",
"keywords": [
"react",
"boilerplate",
"eslint",
"docker",
"nginx"
],
"author": "Max Hilliard",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/maxhilliard/react-boilerplate/issues"
},
"homepage": "https://github.com/maxhilliard/react-boilerplate#readme",
"devDependencies": {
"babel-core": "6.26.3",
"babel-jest": "23.4.2",
"babel-loader": "7.1.5",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"css-loader": "1.0.0",
"eslint": "4.19",
"eslint-config-airbnb": "17.0.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.10.0",
"html-webpack-plugin": "3.2.0",
"identity-obj-proxy": "3.0.0",
"jest": "23.4.2",
"postcss-loader": "2.1.6",
"pre-commit": "1.2.2",
"pre-push": "0.1.1",
"react-test-renderer": "16.4.1",
"style-loader": "0.21.0",
"webpack": "4.16.3",
"webpack-cli": "3.1.0",
"webpack-dev-server": "3.1.5"
},
"dependencies": {
"autoprefixer": "9.0.2",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"prop-types": "15.6.2",
"react": "16.4.1",
"react-dom": "16.4.1"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"setupTestFrameworkScriptFile": "<rootDir>/internals/test/setupTests.js",
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy",
"\\.(gif|ttf|eot|svg|png|jpeg)$": "<rootDir>/internals/test/__mocks__/fileMock.js"
}
},
"pre-commit": ["lint", "test"],
"pre-push": ["build"]
}