This repository has been archived by the owner on Mar 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 2.29 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
{
"name": "dashboard-plugin",
"version": "2.3.0",
"license": "ISC",
"description": "Infomaker Dashboard Starter Plugin",
"homepage": "https://github.com/Infomaker/Dashboard-Plugin",
"repository": "https://github.com/Infomaker/Dashboard-Plugin",
"private": true,
"bugs": "https://github.com/Infomaker/Dashboard-Plugin/issues",
"main": "__tooling__/webpack/webpack.dev.config.js",
"scripts": {
"prompt": "node ./prompt.js",
"start": "npm-run-all prompt --parallel server dev",
"start:hot": "npm-run-all prompt --parallel server:hot",
"dev": "webpack --config __tooling__/webpack/webpack.dev.config.js --watch",
"dev:hot": "webpack --config __tooling__/webpack/webpack.hot.config.js --watch",
"server": "node server.js",
"server:hot": "HOT=1 node server.js",
"upload:s3": "npm run build:prod && node ./s3.js",
"build:prod": "webpack --config __tooling__/webpack/webpack.prod.config.js -p"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"@quickbaseoss/babel-plugin-styled-components-css-namespace": "^1.0.0-rc",
"autoprefixer": "^9.5.0",
"aws-sdk": "^2.430.0",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"colors": "^1.3.3",
"copy-webpack-plugin": "^4.5.2",
"cors": "^2.8.1",
"css-loader": "^1.0.0",
"eslint": "6.0.1",
"eslint-loader": "2.2.1",
"eslint-plugin-react": "^7.12.4",
"express": "^4.16.4",
"ip": "^1.1.5",
"mini-css-extract-plugin": "^0.4.2",
"nodemon": "^1.18.10",
"npm": "^6.9.0",
"npm-run-all": "^4.1.5",
"os": "^0.1.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.6.0",
"prompt": "^1.0.0",
"string-replace-loader": "^2.1.1",
"style-loader": "^0.23.1",
"styled-components": "^4.2.0",
"url-loader": "^1.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-merge": "^4.2.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack-hot-middleware": "2.25.0",
"webpack-dev-middleware": "3.7.0"
}
}