forked from rafalp/Misago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.63 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
{
"name": "misago-admin",
"version": "0.1.0",
"description": "Admin panel UI kit",
"main": "./misago/admin/src/index.js",
"scripts": {
"watch": "NODE_ENV=development webpack -d -w",
"build": "NODE_ENV=production webpack -p",
"prettier": "prettier --write misago/admin/src/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rafalp/misago.git"
},
"author": "Rafał Pitoń",
"license": "SEE LICENSE IN LICENSE.rst",
"bugs": {
"url": "https://github.com/rafalp/misago/issues"
},
"homepage": "https://github.com/rafalp/misago#readme",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"apexcharts": "^3.6.10",
"apollo-boost": "^0.3.1",
"bootstrap": "^4.3.1",
"graphql": "^14.2.1",
"jquery": "^3.4.0",
"moment": "^2.24.0",
"popper.js": "^1.14.7",
"react": "^16.8.6",
"react-apexcharts": "^1.3.3",
"react-apollo": "^2.5.5",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"autoprefixer": "^9.4.7",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.5",
"babel-preset-react-app": "^8.0.0",
"css-loader": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-react-app": "^4.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.5.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"prettier": "1.17.0",
"sass-loader": "^7.1.0",
"stylelint": "^9.10.1",
"stylelint-config-twbs-bootstrap": "^0.3.0",
"stylelint-webpack-plugin": "^0.10.5",
"webpack": "^4.29.4",
"webpack-cli": "^3.2.3"
},
"browserslist": [
">= 1%",
"last 1 major version",
"not dead",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
],
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"edge": "17",
"firefox": "60",
"chrome": "67",
"safari": "11.1"
},
"useBuiltIns": "usage"
}
],
"react-app"
],
"plugins": [
"@babel/plugin-transform-arrow-functions",
"@babel/plugin-proposal-export-default-from"
]
},
"prettier": {
"semi": false
}
}