forked from kriasoft/react-firebase-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.86 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.86 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
98
99
100
101
102
103
{
"private": true,
"engines": {
"node": ">=6",
"npm": ">=3.8"
},
"dependencies": {
"autoprefixer": "^6.3.6",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.9.0",
"babel-runtime": "^6.9.0",
"browser-sync": "^2.12.8",
"chai": "^3.5.0",
"cpy": "^4.0.1",
"css-loader": "^0.23.1",
"del": "^2.2.0",
"eslint": "^2.10.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"extend": "^3.0.0",
"fastclick": "^1.0.6",
"fbjs": "^0.8.2",
"file-loader": "^0.8.5",
"front-matter": "^2.0.7",
"git-repository": "^0.1.4",
"highlight.js": "^9.4.0",
"history": "^2.1.1",
"json-loader": "^0.5.4",
"markdown-it": "^6.0.2",
"mocha": "^2.4.5",
"pixrem": "^3.0.0",
"pleeease-filters": "^3.0.0",
"postcss": "^5.0.21",
"postcss-calc": "^5.2.1",
"postcss-color-function": "^2.0.1",
"postcss-custom-media": "^5.0.1",
"postcss-custom-properties": "^5.0.1",
"postcss-custom-selectors": "^3.0.0",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.9.1",
"postcss-media-minmax": "^2.1.2",
"postcss-nesting": "^2.3.1",
"postcss-selector-matches": "^2.0.1",
"postcss-selector-not": "^2.0.0",
"react": "^15.0.2",
"react-app": "^1.0.0-alpha.3",
"react-dom": "^15.0.2",
"react-hot-loader": "^3.0.0-beta.2",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"s3": "^4.4.0",
"style-loader": "^0.13.1",
"stylelint": "^6.4.1",
"stylelint-config-standard": "^7.0.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0",
"whatwg-fetch": "^1.0.0"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-1"
],
"plugins": [
"transform-runtime"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb"
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"string-quotes": "single"
}
},
"scripts": {
"eslint": "eslint components core routes test tools",
"stylelint": "stylelint \"components/**/*.css\" \"routes/**/*.css\"",
"lint": "npm run eslint && npm run stylelint",
"test": "mocha --compilers js:babel-register",
"test:watch": "mocha --compilers js:babel-register --reporter min --watch",
"clean": "node tools/clean",
"build": "node tools/build --release",
"build:debug": "node tools/build",
"deploy": "node tools/deploy.gh --release",
"start": "node tools/start"
}
}