-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.15 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
{
"name": "colorpin",
"version": "1.0.0",
"description": "Color utility tool",
"engines": {
"node": "7.2.0",
"npm": "3.10.9"
},
"main": "index.js",
"scripts": {
"test": "jest",
"clean": "rimraf build",
"serve": "NODE_ENV=development webpack-dev-server --open --no-info --history-api-fallback",
"start": "NODE_ENV=production node server.js",
"postinstall": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcintreder/colorpin.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.2.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.23.0",
"babel-preset-react-hmre": "^1.1.1",
"clipboard": "^1.6.1",
"css-loader": "^0.28.4",
"dexie": "^1.5.1",
"electron": "^1.6.11",
"electron-packager": "^8.6.0",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^3.0.0",
"glamor": "^2.20.35",
"glamorous": "^3.23.5",
"html-webpack-plugin": "^2.28.0",
"lodash": "^4.17.4",
"node-sass": "^4.5.2",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-hot-loader": "^1.3.1",
"react-jss": "^7.0.0-pre.1",
"react-redux": "^5.0.5",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"sinon": "^2.3.8",
"style-loader": "^0.18.2",
"styled-components": "^2.1.1",
"tinycolor2": "^1.4.1",
"webpack": "^3.4.1"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-jest": "^20.0.3",
"enzyme": "^2.9.1",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-css-js": "^0.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"jest": "^20.0.4",
"react-addons-test-utils": "^15.6.0",
"react-test-renderer": "^15.6.1",
"webpack-dev-server": "^2.2.0-rc.0"
}
}