-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
78 lines (78 loc) · 2.55 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
{
"name": "cloud-explorer",
"version": "2.1.25",
"description": "",
"main": "lib/router.js",
"engines": {
"node": ">=8.16.3 <=12.22.10"
},
"scripts": {
"prepublishOnly": "npm run build",
"prepare": "npm run build",
"release": "",
"start": "node lib/index.js",
"test": "jest",
"test:watch": "npm test -- --watch",
"build": "run-s build:js build:sass",
"build:prod": "browserify --extension=jsx src/js/App.jsx -t [ babelify ] -g [ envify --NODE_ENV production ] -g uglifyify | uglifyjs --compress --mangle > dist/cloud-explorer.js",
"build:js": "browserify --extension=jsx src/js/App.jsx -d -o dist/cloud-explorer.js -t [ babelify ]",
"build:sass": "node-sass --include-path `node_modules font-awesome` --include-path `node_modules npm-font-open-sans` src/sass/style.scss dist/style.css",
"lint": "run-s lint:client lint:server",
"lint:client": "eslint --fix -c src/js/.eslintrc.json --ext .jsx,.js src/js __tests__ dist/demo-page.js",
"lint:server": "eslint -c lib/.eslintrc.json lib/",
"watch": "live-reload dist/ --port 35729 & watch 'npm run build:js' src/js & watch 'npm run build:sass' src/sass"
},
"author": "",
"license": "MIT",
"dependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"buffer-image-size": "^0.6.4",
"cookie-parser": "^1.4.6",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"file-icon-vectors": "^1.0.0",
"font-awesome": "^4.7.0",
"multer": "^1.4.2",
"node_modules-path": "*",
"node-fetch": "^2.6.1",
"npm-font-open-sans": "^1.1.0",
"request": "^2.88.2",
"unifile": "^2.0.24",
"unifile-webdav": "^1.1.5",
"unsplash-js": "^7.0.15"
},
"optionalDependencies": {
"sharp": "0.31.3"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"babel-jest": "^29.4.3",
"babel-runtime": "^6.26.0",
"babelify": "^10.0.0",
"bluebird": "^3.7.2",
"browserify": "^17.0.0",
"connect-multiparty": "^2.2.0",
"envify": "^4.1.0",
"eslint": "^8.35.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.4.3",
"jest-localstorage-mock": "^2.4.26",
"node-sass": "^8.0.0",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uglify-js": "^3.17.4",
"uglifyify": "^5.0.2"
},
"jest": {
"setupFiles": [
"jest-localstorage-mock"
]
}
}