forked from psc478/advanced-final-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.14 KB
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
{
"name": "advanced-final-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint server",
"api-dev": "nodemon --exec \"babel-node server/index\"",
"test": "npm run lint",
"dev": "nf start",
"build-client": "cd client && npm run build",
"clean-assets": "if exist \"public\" rmdir /s /q \"public\"",
"copy-assets": "mkdir \"public\" && xcopy /E \"client\\build\" \"public\"",
"compile-server": "rmdir /s /q \"dist\" && babel server --out-dir dist",
"pre-deploy": "npm run compile-server && npm run build-client && npm run clean-assets && npm run copy-assets",
"start": "node ./dist/index",
"client": "cd client && npm start && cd .."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-istanbul": "^0.12.2",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-regenerator": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-resolver": "^1.1.0",
"eslint": "^3.16.1",
"eslint-plugin-babel": "^4.1.0",
"eslint-plugin-react": "^6.10.0",
"foreman": "^2.0.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.15.2",
"create-react-app": "1.2.1",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"jwt-simple": "^0.5.1",
"mongoose": "^4.10.2",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.5.4",
"react-redux": "^5.0.6",
"react-router-dom": "^4.1.1",
"react-scripts": "^0.9.5",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"whatwg-fetch": "^2.0.3"
},
"proxy": "http://localhost:3001"
}