-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·131 lines (130 loc) · 3.61 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
"name": "GamesWithWords",
"version": "0.1.0",
"private": false,
"engines": {
"node": ">=6",
"npm": ">=3.8"
},
"dependencies": {
"axios": "^0.15.3",
"babel-polyfill": "^6.9.1",
"babel-register": "^6.11.6",
"classnames": "^2.2.5",
"fastclick": "^1.0.6",
"history": "^3.0.0",
"imagesloaded": "*",
"pushkin-react": "^1.1.0",
"rc-progress": "^2.0.6",
"react": "^15.2.1",
"react-bootstrap": "*",
"react-resize-detector": "*",
"react-dom": "^15.2.1",
"react-foundation": "*",
"react-iframe": "*",
"react-mdl": "^1.9.0",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"react-router-bootstrap": "^0.23.1",
"react-router-redux": "^4.0.7",
"react-router-sitemap": "^1.1.1",
"react-share": "^1.11.0",
"react-skylight": "^0.4.1",
"react-social-icons": "*",
"react-tap-event-plugin": "*",
"redux": "^3.5.2",
"redux-form": "^6.5.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0",
"script-loader": "^0.7.0",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"assets-webpack-plugin": "^3.4.0",
"autoprefixer": "^6.3.7",
"babel": "^6.5.2",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.5.0",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.11.6",
"babel-runtime": "^6.11.6",
"browser-sync": "^2.13.0",
"chai": "^3.5.0",
"connect-history-api-fallback": "^1.2.0",
"css-loader": "^0.23.1",
"del": "^2.2.1",
"ejs": "^2.5.1",
"eslint": "^3.1.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^5.2.2",
"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.1.1",
"postcss-calc": "^5.3.0",
"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-flexbugs-fixes": "^2.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.6",
"s3": "^4.4.0",
"style-loader": "^0.13.1",
"stylelint": "^7.0.3",
"stylelint-config-standard": "^11.0.0",
"url-loader": "^0.5.7",
"webpack": "^2.1.0-beta.25",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^2.1.0-beta.0",
"webpack-hot-middleware": "^2.12.2"
},
"babel": {
"presets": ["react", "es2015", "stage-1"],
"plugins": ["transform-runtime"]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"comma-dangle": "off"
}
},
"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": "mocha --compilers js:babel-register",
"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"
}
}