-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.44 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
{
"name": "green-frontend",
"description": "Reusable frontend for powering beautiful dashboards. (originally developed for http://green.af)",
"version": "0.0.3",
"main": "index.js",
"license": "MIT",
"author": "Green (https://github.com/green)",
"maintainers": [
"Josh Gillies <npm@josh.gl> (http://josh.gl)"
],
"repository": "git@github.com:green/frontend.git",
"scripts": {
"example": "budo ./example/index.js:bundle.js --title Green.af",
"test": "standard"
},
"standard": {
"parser": "babel-eslint"
},
"browserify": {
"transform": [
"envify",
"lessify",
[
"babelify",
{
"presets": [
"es2015",
"stage-0",
"react"
]
}
]
]
},
"dependencies": {
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babelify": "^7.3.0",
"envify": "^4.0.0",
"font-awesome": "^4.7.0",
"js-kit": "^0.2.0",
"lessify": "^1.0.1",
"moment": "^2.17.1",
"normalize-css": "^2.3.1",
"react": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-persist": "^4.1.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"budo": "^9.4.7",
"react-dom": "^15.4.2",
"standard": "^8.6.0"
}
}