-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
115 lines (115 loc) · 3.63 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "boilermaker",
"version": "2.0.0",
"description": "Some boilerplate code to get you started - get shakin'!",
"engines": {
"node": ">= 7.0.0"
},
"main": "index.js",
"scripts": {
"build-client": "webpack",
"build": "webpack",
"build-client-watch": "webpack -w",
"deploy": "script/deploy",
"heroku-token": "script/encrypt-heroku-auth-token.js",
"lint": "eslint ./ --ignore-path .gitignore",
"lint-fix": "npm run lint -- --fix",
"prepare": "if [ -d .git ]; then npm-merge-driver install; fi",
"prettify": "prettier --write \"**/*.{js,jsx,json,css,scss,md}\"",
"postinstall": "touch secrets.js",
"seed": "node script/seed.js",
"start": "node server",
"start-dev": "NODE_ENV='development' npm run build-client-watch & NODE_ENV='development' npm run start-server",
"start-server": "nodemon server -e html,js,scss --ignore public --ignore client",
"test": "NODE_ENV='test' mocha \"./server/**/*.spec.js\" \"./client/**/*.spec.js\" \"./script/**/*.spec.js\" --require @babel/polyfill --require @babel/register"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"npm run lint-fix",
"git add"
],
"*.{css,scss,json,md}": [
"prettier --write",
"git add"
]
},
"author": "Fullstack Academy of Code",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"compression": "^1.7.3",
"connect-session-sequelize": "^6.0.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-session": "^1.15.1",
"history": "^4.9.0",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-google-oauth": "^2.0.0",
"pg": "^7.9.0",
"pg-hstore": "^2.3.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.1",
"react-redux-toastr": "^7.5.1",
"react-router-dom": "^5.0.0",
"react-stripe-checkout": "^2.6.3",
"react-toastify": "^5.4.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"sequelize": "^5.19.0",
"socket.io": "^2.2.0",
"stripe": "^7.9.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-decorators": "7.4.0",
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
"@babel/plugin-proposal-function-sent": "7.2.0",
"@babel/plugin-proposal-json-strings": "7.2.0",
"@babel/plugin-proposal-numeric-separator": "7.2.0",
"@babel/plugin-proposal-throw-expressions": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-syntax-import-meta": "7.2.0",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"axios-mock-adapter": "^1.16.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"css-loader": "^3.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^5.16.0",
"eslint-config-fullstack": "^6.0.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-react": "^7.12.4",
"git-url-parse": "^11.1.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mocha": "^6.1.4",
"nodemon": "^1.18.3",
"npm-merge-driver": "^2.3.5",
"prettier": "1.11.1",
"react-test-renderer": "^16.4.2",
"redux-devtools-extension": "^2.13.5",
"redux-mock-store": "^1.5.3",
"simple-git": "^1.121.0",
"style-loader": "^1.0.0",
"supertest": "^4.0.2",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0",
"yaml": "^1.6.0"
}
}