-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
108 lines (108 loc) · 2.7 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "sikhjs",
"version": "0.7.6",
"description": "Multiplatform application for Gurbani",
"private": true,
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack -p",
"lint": "xo",
"start": "webpack-dev-server --host 0.0.0.0 --open",
"test": "npm run lint"
},
"dependencies": {
"dexie": "^2.0.1",
"emotion": "^8.0.0",
"khajana": "^1.0.3",
"markdown": "^0.5.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-emotion": "^8.0.12",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"unfetch": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-emotion": "^8.0.12",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.23.0",
"css-loader": "^0.28.7",
"eslint-config-xo-react": "^0.14.0",
"eslint-plugin-react": "^7.5.1",
"extract-loader": "^1.0.1",
"file-loader": "^1.1.0",
"style-loader": "^0.19.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7",
"xo": "^0.18.2"
},
"xo": {
"extends": "xo-react",
"env": ["browser"],
"space": true,
"semicolons": true,
"ignores": ["assets/**/*.js"],
"rules": {
"react/jsx-no-bind": ["off"],
"react/jsx-closing-bracket-location": ["error", "tag-aligned"],
"react/forbid-component-props": 1,
"react/jsx-handler-names": 1,
"radix": 0,
"react/require-default-props": 1,
"react/no-array-index-key": 1,
"react/prop-types": 1,
"unicorn/filename-case": 1,
"react/jsx-pascal-case": 1,
"react/no-unescaped-entities": 1,
"react/jsx-tag-spacing": [
"error",
{
"beforeSelfClosing": true
}
],
"new-cap": [
"error",
{
"capIsNew": false
}
],
"operator-linebreak": ["error", "before"],
"space-before-function-paren": ["error", "always"],
"array-bracket-spacing": ["error", "always"],
"comma-dangle": ["error", "always-multiline"],
"object-curly-spacing": ["error", "always"],
"import/no-extraneous-dependencies": ["warn"]
}
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browser": "> 5%"
}
}
],
"react"
],
"plugins": [
[
"emotion",
{
"inline": true
}
],
"transform-object-rest-spread",
"transform-react-remove-prop-types"
]
},
"author": "bogas04",
"license": "MIT"
}