forked from zendesk/linksf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
146 lines (146 loc) · 3.7 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "Link-SF",
"version": "v1.0.0",
"engines": {},
"repository": {
"type": "git",
"url": "git://github.com/zendesk/linksf.git"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Benjamin Osheroff"
},
{
"name": "Igor Justino de Souza"
},
{
"name": "Rose Trujillo"
},
{
"name": "Shajith Chacko"
},
{
"name": "Kenshiro Nakagawa"
},
{
"name": "Greg Ziegan"
},
{
"name": "Craig Day"
},
{
"name": "Adam Hart"
},
{
"name": "Michael Huston"
}
],
"dependencies": {
"babel-polyfill": "^6.9.1",
"camelize": "^1.0.0",
"decamelize-keys-deep": "^0.1.0",
"es6-promisify": "^4.1.0",
"fastclick": "^1.0.6",
"firebase": "^3.3.1",
"google-maps": "^3.2.1",
"history": "^3.0.0",
"ramda": "^0.22.1",
"react": "^15.2.0",
"react-dom": "^15.2.0",
"react-google-autocomplete": "^1.0.7",
"react-google-maps": "^4.11.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"assets-webpack-plugin": "^3.4.0",
"autoprefixer": "^6.3.7",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.9.0",
"babel-runtime": "^6.9.2",
"browser-sync": "^2.13.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"del": "^2.2.1",
"dotenv-webpack": "^1.3.1",
"ejs": "^2.4.2",
"eslint": "^3.0.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"extend": "^3.0.0",
"file-loader": "^0.9.0",
"firebase-tools": "^3.0.4",
"front-matter": "^2.1.0",
"highlight.js": "^9.5.0",
"json-loader": "^0.5.4",
"markdown-it": "^7.0.0",
"mocha": "^2.5.3",
"path-to-regexp": "^1.5.3",
"pixrem": "^3.0.1",
"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-hot-loader": "^3.0.0-beta.2",
"s3": "^4.4.0",
"style-loader": "^0.13.1",
"stylelint": "^6.8.0",
"stylelint-config-standard": "^10.0.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.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 pages test utils main.js run.js webpack.config.js",
"stylelint": "stylelint \"components/**/*.css\" \"pages/**/*.css\"",
"lint": "npm run eslint && npm run stylelint",
"test": "echo tests planned",
"test:watch": "mocha --compilers js:babel-register --reporter min --watch",
"clean": "node run clean",
"build": "node run build",
"build:debug": "node run build --debug",
"publish": "node run publish",
"publish:debug": "node run publish --debug",
"start": "node run"
}
}