forked from dotConnect-dev/axolotl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.61 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
{
"name": "axolotl",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV=production nodemon server/server.js & sass --style compressed --watch combined.scss:combined.css",
"build": "NODE_ENV=production webpack",
"dev": "NODE_ENV=development nodemon server/server.js & NODE_ENV=development webpack serve --open & sass --style compressed --watch combined.scss:combined.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weilanc-gmail-com/axolotl.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/weilanc-gmail-com/axolotl/issues"
},
"homepage": "https://github.com/weilanc-gmail-com/axolotl#readme",
"dependencies": {
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"isomorphic-fetch": "^3.0.0",
"node-fetch": "^2.6.1",
"pg": "^8.5.1",
"qs": "^6.7.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"babel-loader": "^8.2.2",
"css-loader": "^5.1.1",
"nodemon": "^2.0.7",
"redux-devtools-extension": "^2.13.8",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.24.3",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}