-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.57 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.57 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"description": "T7 React starter project",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/t7/react-starter.git"
},
"babel": {
"presets": [
"react",
"es2015"
],
"plugins": [
"transform-runtime"
],
"env": {
"test": {
"sourceMaps": "inline"
}
}
},
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>"
],
"moduleFileExtensions": [
"js"
],
"testFileExtensions": [
"js"
]
},
"scripts": {
"build": "npm run test && rimraf build/* && cross-env BABEL_ENV=production webpack",
"start": "cross-env BABEL_ENV=development webpack-dev-server --hot --inline --progress --content-base source",
"pretest": "npm run lint",
"test": "jest --coverage",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint 'source/**/*.js'",
"lint:css": "sass-lint source/scss/**/*.scss -q -v -f html -o sass-lint.html",
"prepush": "npm test",
"postmerge": "npm install"
},
"devDependencies": {
"accounting": "0.4.1",
"autoprefixer": "6.5.2",
"babel-core": "6.18.2",
"babel-jest": "11.0.2",
"babel-loader": "6.2.7",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"babel-runtime": "6.18.0",
"copy-webpack-plugin": "2.1.6",
"cross-env": "1.0.8",
"css-loader": "0.23.1",
"es6-promise": "3.3.1",
"eslint": "3.9.1",
"eslint-config-standard": "6.2.1",
"eslint-config-standard-jsx": "3.2.0",
"eslint-config-standard-react": "4.2.0",
"eslint-plugin-promise": "3.3.1",
"eslint-plugin-react": "6.6.0",
"eslint-plugin-standard": "2.0.1",
"exports-loader": "0.6.3",
"extract-text-webpack-plugin": "1.0.1",
"history": "2.1.2",
"html-webpack-plugin": "2.24.1",
"husky": "0.11.9",
"imports-loader": "0.6.5",
"jest-cli": "11.0.1",
"json-loader": "0.5.4",
"lodash": "4.16.6",
"marked": "0.3.6",
"moment": "2.15.2",
"node-sass": "3.11.2",
"npm": "3.10.10",
"postcss": "5.2.5",
"postcss-loader": "0.8.2",
"raw-loader": "0.5.1",
"react": "15.3.2",
"react-addons-test-utils": "15.3.2",
"react-dom": "15.0.2",
"react-hot-loader": "1.3.0",
"react-redux": "4.4.5",
"react-router": "2.8.1",
"redux": "3.6.0",
"rimraf": "2.5.2",
"sass-lint": "1.10.1",
"sass-loader": "3.2.3",
"style-loader": "0.13.1",
"unsemantic": "1.1.3",
"webpack": "1.13.3",
"webpack-dev-server": "1.16.2",
"whatwg-fetch": "0.11.1"
}
}