-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.22 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
{
"name": "rainbow-explorer",
"version": "1.0.0",
"description": "A 20kb Preact & Redux based Progressive Web App that translates real life color to digital color.",
"main": "index.js",
"scripts": {
"dev": "webpack --watch | webpack-dev-server --port 3000 --hot --host 0.0.0.0",
"build": "NODE_ENV=production webpack -p --progress"
},
"author": "Colin van Eenige <cvaneenige@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-minimal": "^2.1.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.23.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-module-utils": "^2.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"preact": "^8.1.0",
"preact-redux": "^2.0.1",
"redux": "^3.6.0"
}
}