-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.22 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
109
110
111
112
113
114
115
116
{
"name": "flatlify",
"version": "0.0.1",
"description": "Flat file NodeJS based CMS",
"main": "index.js",
"scripts": {
"dev:nextjs": "next",
"dev:server": "nodemon ./server/index.js",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:nextjs\"",
"build": "npm run eslint && next build",
"start": "cross-env NODE_ENV=production node server/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint ./**/*.{js,jsx}",
"eslint:fix": "eslint ./**/*.{js,jsx} --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flatlify/flatlify.git"
},
"keywords": [
"flat-file",
"cms",
"nodejs"
],
"author": "@sergesemashko",
"license": "MIT",
"bugs": {
"url": "https://github.com/flatlify/flatlify/issues"
},
"homepage": "https://github.com/flatlify/flatlify#readme",
"dependencies": {
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.2.0",
"@types/axios": "^0.14.0",
"@types/date-fns": "^2.6.0",
"@types/express": "^4.17.3",
"@types/lowdb": "^1.0.9",
"@types/node": "^13.9.4",
"axios": "^0.18.0",
"body-parser": "^1.19.0",
"debug": "^4.1.1",
"deep-diff": "^1.0.2",
"express": "^4.17.0",
"flatlify-server": "git+https://github.com/flatlify/flatlify.git",
"fs-extra": "^8.0.1",
"glob": "^7.1.6",
"globby": "^10.0.1",
"informed": "^2.7.2",
"isomorphic-fetch": "^2.2.1",
"isomorphic-git": "^0.72.1",
"jsondiffpatch": "^0.3.11",
"lodash": "^4.17.15",
"lowdb": "^1.0.0",
"multer": "^1.4.1",
"next": "^9.3.2",
"pify": "^4.0.1",
"prop-types": "^15.7.2",
"querystring": "^0.2.0",
"ra-data-json-server": "^3.3.3",
"ra-input-rich-text": "^3.3.1",
"react": "^16.13.1",
"react-admin": "^3.3.3",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^16.13.1",
"react-dropzone": "^10.2.2",
"react-grid-gallery": "^0.5.5",
"react-modal": "^3.11.1",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"reselect": "^4.0.0",
"string": "^3.3.3"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-stage-3": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.2",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"concurrently": "^5.1.0",
"cross-env": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-flowtype": "^3.10.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": ">=1",
"json-server": "^0.15.1",
"lint-staged": "^10.0.9",
"nodemon": "^1.19.4",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
],
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
}
}