-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.25 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
91
92
{
"name": "tsomi",
"version": "1.0.0",
"description": "The sphere of my influence",
"main": "dist/bundle.js",
"scripts": {
"build": "cp configs/$CONFIG_FILE src/config.js && npm run test && npm run flow && webpack",
"test": "babel-node spec/run.js",
"flow": "flow",
"dev": "cp configs/$CONFIG_FILE src/config.js && webpack --watch --colors --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloud-city/tsomi.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cloud-city/tsomi/issues"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true
},
"parser": "babel-eslint",
"extends": "airbnb",
"plugins": [
"react"
],
"rules": {
"indent": [
"error",
2,
{
"SwitchCase": 1
}
],
"semi": [
"warn",
"never"
],
"linebreak-style": [
"error",
"unix"
]
}
},
"homepage": "https://github.com/cloud-city/tsomi#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.10",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"flow": "^0.2.3",
"flow-bin": "^0.76.0",
"flow-webpack-plugin": "^1.2.0",
"jasmine": "^2.4.0",
"path": "^0.12.7",
"style-loader": "^0.20.3",
"url-loader": "^1.0.1",
"webpack": "^3.11.0"
},
"dependencies": {
"d3": "^5.4.0",
"flow-typed": "^2.5.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.5",
"luminescent-dreams-base": "0.0.0",
"moment": "^2.22.1",
"query-string": "^6.1.0",
"rc-slider": "^8.6.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"xml2js": "^0.4.19"
}
}