-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 3.03 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
{
"name": "safe-app",
"version": "0.0.26",
"description": "Safe App",
"repository": "https://github.com/jeffshaver/safe-app",
"scripts": {
"build": "NODE_ENV=production webpack",
"build:dev": "NODE_ENV=development webpack",
"bump:major": "node ./bin/bump.js major --commit --tag",
"bump:minor": "node ./bin/bump.js minor --commit --tag",
"bump:patch": "node ./bin/bump.js patch --commit --tag",
"clean:dist": "rm -f dist/*.hot-update.js*",
"lint": "eslint --ext .js,.jsx src/ test/ ./server.js",
"prepublish": "npm run lint && npm test",
"start": "NODE_ENV=production node server",
"start:dev": "NODE_ENV=development node server.js",
"test": "mocha --reporter dot --compilers js:babel-register test/index",
"test:spec": "mocha --compilers js:babel-register test/index",
"test:watch": "npm test -- --watch",
"update:config": "node ./bin/update-config.js"
},
"author": "Jeff Shaver <jeff.e.shaver@gmail.com> (http://jeffshaver.me)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-dev-warning": "^0.1.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"babel-runtime": "^6.11.6",
"deep-freeze": "0.0.1",
"eslint": "^3.12.2",
"eslint-import-resolver-webpack": "^0.8.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-standard": "^2.0.1",
"expect": "^1.20.2",
"json-file-plus": "^3.3.0",
"mocha": "^3.0.2",
"nock": "^8.0.0",
"react-transform-hmr": "^1.0.4",
"redux-mock-store": "^1.1.4",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2"
},
"dependencies": {
"change-case": "^3.0.0",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"errorhandler": "^1.4.3",
"express": "^4.14.0",
"formsy-material-ui": "^0.5.0",
"formsy-react": "^0.18.1",
"isomorphic-fetch": "^2.2.1",
"leaflet": "^0.7.7",
"leaflet-fullscreen": "^1.0.1",
"lodash.isequal": "^4.4.0",
"lodash.uniqby": "^4.7.0",
"material-ui": "^0.16.5",
"morgan": "^1.7.0",
"node-uuid": "^1.4.7",
"numeral": "^1.5.3",
"papaparse": "^4.1.2",
"radium": "^0.18.1",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"react-grid-layout": "^0.13.7",
"react-leaflet": "^0.12.1",
"react-redux": "^4.4.5",
"react-router": "^2.7.0",
"react-router-redux": "^4.0.5",
"react-tap-event-plugin": "^2.0.0",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0",
"safe-framework": "0.0.*",
"serve-static": "^1.11.1"
}
}