-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.39 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
{
"name": "portal",
"version": "1.0.0",
"description": "",
"main": "index.jsx",
"scripts": {
"watch": "watchify -v -t babelify index.jsx -g [ envify --NODE_ENV development ] -o ./dist/muonrevo.min.js",
"fastbuild": "browserify -t babelify index.jsx -g [ envify --NODE_ENV development ] > ./dist/muonrevo.min.js",
"build": "npm run lint && npm run test && npm run browserify",
"lint": "eslint . --ext .js --ext .jsx",
"test": "mocha",
"browserify": "browserify -t babelify index.jsx -g [ envify --NODE_ENV production ] -g uglifyify | uglifyjs --compress warnings=false --mangle > ./dist/muonrevo.min.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"dropbox": "^2.5.7",
"eventthing": "^1.0.7",
"humanize-duration": "^3.10.0",
"marked": "^0.3.12",
"node-emoji": "^1.8.1",
"react": "15.4.1",
"react-dom": "15.4.1",
"react-dropzone": "^3.8.0",
"react-monaco-editor": "^0.10.0",
"react-resize-aware-monaco": "^0.1.4"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-preset-es2015": "^6.5.0",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^16.2.3",
"envify": "^4.1.0",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.9.1",
"mocha": "^5.2.0",
"uglify-js": "^3.1.3",
"uglifyify": "^4.0.4",
"watchify": "^3.11.0"
}
}