-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.89 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
{
"name": "sourcerer",
"version": "1.0.0",
"description": "",
"main": "client/index.js",
"scripts": {
"start": "nodemon server/server.js",
"build": "cross-env NODE_ENV=production webpack",
"dev": "cross-env NODE_ENV=development \"nodemon server/server.js\" & \"webpack-dev-server\" --open",
"gulp-prod": "node_modules/.bin/gulp prod",
"gulp-dev": "node_modules/.bin/gulp dev"
},
"nodemonConfig": {
"ignore": [
"build",
"client"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/JsonRoyJones/Sourcerer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JsonRoyJones/Sourcerer/issues"
},
"homepage": "https://github.com/JsonRoyJones/Sourcerer#readme",
"dependencies": {
"body-parser": "^1.18.3",
"browserify": "^10.2.4",
"css-loader": "^3.4.0",
"dotenv": "^8.2.0",
"express": "^4.16.3",
"gulp": "^3.9.0",
"jsdom": "^16.0.0",
"live-server": "^1.2.1",
"mongoose": "^5.7.3",
"node-fetch": "^2.3.0",
"prettier": "^1.19.1",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.3.1",
"requirejs": "^2.3.6",
"style-loader": "^1.1.2",
"webpack": "^4.29.3"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"babel-loader": "^8.0.6",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"isomorphic-fetch": "^2.2.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.0",
"nodemon": "^1.18.9",
"sass-loader": "^8.0.0",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.10.1",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0"
},
"keywords": []
}