-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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": "resumeweb",
"version": "0.1.0",
"private": true,
"dependencies": {
"bcrypt": "^3.0.2",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.3",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"formsy-react-2": "^0.20.4",
"jsonwebtoken": "^8.3.0",
"jwt-simple": "^0.5.5",
"passport": "^0.4.0",
"passport-linkedin": "^1.0.0",
"passport-local": "^1.0.0",
"pg": "^7.6.1",
"pg-hstore": "^2.3.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-form-validator-core": "^0.5.0",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.5",
"reactstrap": "^6.5.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"sequelize": "^4.41.2",
"sequelize-cli": "^5.3.0"
},
"devDependencies": {
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.11.1",
"eslint-config-taller": "^2.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.2.1",
"jest-fetch-mock": "^2.1.0",
"jest-localstorage-mock": "^2.3.0"
},
"scripts": {
"sequelize": "sequelize",
"sequelize:migrations": "./node_modules/.bin/sequelize db:migrate",
"dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"start:dev": "npm run build && node server/index.js",
"start": "npm run build && node server/index.js",
"lint": "./node_modules/.bin/eslint . --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test -- --coverage"
}
}
}