forked from saasforge/open-source-saas-boilerpate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.95 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
{
"name": "saasbuild",
"version": "1.0.0",
"description": "SaaS Builder",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --config webpack.dev.js",
"prod": "webpack --config webpack.prod.js",
"heroku-prebuild": "npm install",
"heroku-postbuild": "webpack --config webpack.$env.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@fortawesome/fontawesome-free-solid": "^5.0.13",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-regular-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"axios": "^0.19.2",
"babel-loader": "^8.1.0",
"bootstrap": "^4.5.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"history": "^4.10.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.3.0",
"jquery": "^3.5.1",
"mini-css-extract-plugin": "^0.8.2",
"mobx": "^5.15.5",
"mobx-react": "^6.2.5",
"node-sass": "^4.14.1",
"popper.js": "^1.16.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-router-dom": "^5.2.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"jsonpath": "^1.0.2",
"rc-color-picker": "^1.2.6",
"react-bootstrap": "^1.3.0",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"shortid": "^2.2.15"
}
}