-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·73 lines (73 loc) · 2.7 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
{
"dependencies": {
"@babel/runtime": "^7.5.5",
"@babel/runtime-corejs2": "^7.6.2",
"@welldone-software/why-did-you-render": "^3.3.8",
"axios": "^0.18.0",
"babel-plugin-add-react-displayname": "^0.0.5",
"brace": "^0.11.1",
"git": "^0.1.5",
"gsap": "^2.1.3",
"json2csv": "^4.5.3",
"lodash": "^4.17.15",
"logrocket": "^1.0.3",
"logrocket-react": "^4.0.1",
"moment": "^2.24.0",
"mongo-table": "https://github.com/daywiss/mongo-table.git",
"objects-to-csv": "^1.3.4",
"openservice-ws": "https://github.com/daywiss/openservice-ws.git",
"popmotion": "^8.7.1",
"react": "^16.3.2",
"react-ace": "^7.0.4",
"react-dom": "^16.3.2",
"react-markdown": "^4.2.2",
"react-notification-system": "^0.3.0",
"react-pos": "^0.1.0",
"react-pose": "^4.0.9",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-window": "^1.8.5",
"react-wiring": "^1.0.0",
"request-promise": "^4.2.4",
"unfetch": "^4.1.0",
"uuid": "^3.3.3",
"whatwg-fetch": "^3.0.0",
"why-did-you-update": "^1.0.6",
"ws-api-client": "https://github.com/daywiss/ws-api-client.git"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"marked": "^0.7.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"polished": "^3.4.1",
"prettier-eslint": "^9.0.0",
"prettier-eslint-cli": "^5.0.0",
"styled-components": "^4.4.0",
"styled-normalize": "^8.0.6",
"styled-system": "^5.1.2"
},
"scripts": {
"lint": "prettier-eslint --write '**/*.{js,jsx}' --no-semi --trailing-comma es5 --tab-width 2 --single-quote",
"predeploy": "rm -rf dist && parcel build index.html --out-dir dist",
"deploy": "gh-pages -d dist",
"start": "parcel index.html",
"build": "parcel build index.html --out-dir dist && yarn deletemaps",
"deletemaps": "find . -type f -name *.map -delete",
"lint": "prettier-eslint --write '**/*.{js,jsx}' --no-semi --trailing-comma es5 --tab-width 2 --single-quote",
"delete-locks": "find . -type f -name package-lock.json -delete && find . -type f -name yarn.lock -delete",
"delete-modules": "find . -type d -name node_modules -exec rm -rf \"{}\" +",
"mass-install": "find . -maxdepth 1 -type d \\( ! -name . \\) -exec bash -c \"cd '{}' && npm install\" \\;",
"cleanup": "yarn delete-locks && yarn delete-modules",
"zipdist": "zip dist.zip dist/*",
"build-prod": "yarn cleanup && yarn && yarn build && yarn zipdist"
},
"targets": {
"chrome": "58",
"ie": "11"
}
}