-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.68 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
{
"name": "yggdrasil",
"version": "0.0.1",
"description": "The frontend website for Hammer-IO.",
"main": "index.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/hammer-io/yggdrasil.git"
},
"scripts": {
"start": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --open --config webpack.dev.js",
"build": "node ./node_modules/webpack/bin/webpack.js --config webpack.prod.js && cp index.* build/ && cp favicons/* build/",
"lint": "eslint src/.",
"lint:fix": "eslint src/. --fix",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
"test:watch": "npm run test -- --watch"
},
"authors": [
"Erica Clark <[email protected]",
"Jack Meyer <[email protected]> (www.jackcmeyer.com)",
"Nischay Venkatram <[email protected]> (www.nischayv.com)",
"Nathan Karasch <[email protected]> (krashdev.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hammer-io/yggradsil/issues"
},
"homepage": "https://github.com/hammer-io/yggdrasil#readme",
"optionalDependencies": {
"fsevents": "*"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.2.1",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"chai-jquery": "^2.0.0",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"file-loader": "^1.1.6",
"jquery": "^3.3.1",
"jsdom": "^11.6.2",
"mocha": "^5.0.4",
"react-addons-test-utils": "^15.6.2",
"svg-react-loader": "^0.4.5",
"url-loader": "^1.0.1",
"webpack": "3.10.0",
"webpack-dev-server": "2.11.1",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"babel-preset-stage-1": "^6.1.18",
"config": "^1.29.4",
"email-validator": "^1.1.1",
"firebase": "^4.10.1",
"flexbox-react": "^4.4.0",
"lodash": "^4.17.5",
"material-auto-rotating-carousel": "^1.7.0",
"material-ui": "^0.20.0",
"normalizr": "^3.2.4",
"prop-types": "^15.6.0",
"react": "^16.3.0",
"react-document-title": "^2.0.3",
"react-dom": "^16.3.0",
"react-markdown": "^3.1.4",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-swipeable-views": "^0.12.13",
"recharts": "^1.0.0-beta.10",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0"
},
"engines": {
"node": ">= 8.9.0"
}
}