-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.12 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
{
"name": "kanievsky",
"version": "0.1.0",
"private": true,
"description": "kanievsky.com",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sullof/kanievsky.git"
},
"author": "Francesco Sullo <[email protected]>",
"license": "ISC",
"dependencies": {
"axios": "^0.22.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"case": "^1.6.3",
"chalk": "^4.1.2",
"commander": "^8.2.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"fs-extra": "^10.0.0",
"i": "^0.3.7",
"local-storage": "^2.0.0",
"pnpm": "^8.10.0",
"prop-types": "^15.8.1",
"qs": "^6.10.1",
"react": "^16.14.0",
"react-device-detect": "^2.2.3",
"react-dom": "^16.14.0",
"react-image-gallery": "^1.2.8",
"react-masonry-component": "^6.3.0",
"react-quill": "^1.3.5",
"react-scroll": "^1.8.4",
"sha3": "^2.1.4",
"sharp": "^0.29.1",
"simple-json-db": "^1.2.3"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.5",
"babel-plugin-react-transform": "^2.0.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^6.10.3",
"mocha": "^8.4.0",
"prettier": "2.5.1",
"webpack": "^2.7.0"
},
"scripts": {
"dev": "source .env && node .",
"start": "node index.js",
"build": "webpack",
"format": "npx prettier --write .",
"local": "npm run build && docker/dev.sh",
"lint": "npm run lint:client && npm run lint:server",
"lint:client": "eslint client/**/*.js",
"lint:server": "eslint server/**/*.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}