-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.23 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
{
"name": "your-project-name",
"version": "1.0.0",
"displayName": "YOUR PROJECT DISPLAY NAME",
"description": "Starter project for react. Please edit this package.json file and change it accordingly to your needs.",
"main": "src/index.js",
"scripts": {
"build": "webpack --config webpack.prod.config.js",
"cover": "jest --coverage",
"lint": "eslint src/**/*.js",
"ci": "eslint src/**/*.js && jest --coverage",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"start": "webpack-dev-server --config webpack.dev.config.js"
},
"homepage": "https://your/project/homepage",
"repository": {
"type": "git",
"url": "https://your/project/repo.git"
},
"bugs": {
"url": "https://url/to/issue/tracking/system"
},
"keywords": [
"YOUR KEYWORDS",
"react"
],
"contributors": [
{
"name": "Contributor 01 Name",
"email": "contributor01@email",
"url": "http://contributor/personal/page"
}
],
"license": "Apache-2.0",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-jest": "^20.0.0",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"cross-env": "^5.0.1",
"css-loader": "^0.26.2",
"enzyme": "^2.8.2",
"eslint": "^3.17.0",
"eslint-plugin-react": "^6.10.0",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.28.0",
"jest": "^19.0.2",
"jest-enzyme": "^3.1.0",
"jsdom": "^10.1.0",
"json-loader": "^0.5.4",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"postcss-loader": "^1.3.3",
"style-loader": "^0.13.2",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
},
"dependencies": {
"ajv": "^5.0.1",
"axios": "^0.16.2",
"bootstrap": "^3.3.7",
"lodash": "^4.17.4",
"react": "^15.4.2",
"react-bootstrap": "^0.30.8",
"react-dom": "^15.4.2",
"react-fontawesome": "^1.6.1",
"react-redux": "^5.0.3",
"react-router": "^4.0.0",
"react-router-dom": "^4.1.1",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-form": "^6.5.0",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0"
}
}