-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.34 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
{
"name": "node-react-starter-kit",
"private": true,
"version": "0.1.0",
"main": "client/index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"start": "NODE_ENV=production node ./server/index.js",
"dev": "concurrently \"webpack-dev-server --mode development\" \"nodemon --watch server ./server/index.js\"",
"build": "webpack --mode production",
"lint-js": "eslint . --ext .js,.jsx;",
"lint-css": "stylelint ./client/styles/**/*.scss;",
"lint": "npm run lint-js && npm run lint-css",
"test": "jest --testMatch **/__tests__/** --detectOpenHandles",
"migrate": "npx sequelize db:migrate",
"seeds": "npx sequelize db:seed:all",
"pre-test-server": "NODE_ENV=test npm run migrate && npm run seeds",
"test-server": "NODE_ENV=test npm run pre-test-server && ./node_modules/.bin/mocha --exit --timeout 5000 ./server/tests/"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"clean-webpack-plugin": "^2.0.2",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"jest-puppeteer": "^4.1.1",
"mini-css-extract-plugin": "^0.6.0",
"mocha": "^6.1.4",
"node-sass": "^4.12.0",
"nodemon": "^1.19.1",
"postcss-loader": "^3.0.0",
"puppeteer": "^1.17.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^10.0.1",
"stylelint-a11y": "^1.2.0",
"stylelint-config-sass-guidelines": "^6.0.0",
"stylelint-scss": "^3.6.1",
"supertest": "^4.0.2",
"terser-webpack-plugin": "^1.3.0",
"webpack": "^4.32.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1",
"workbox-webpack-plugin": "^4.3.1"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"classcat": "^3.2.5",
"compression": "^1.7.4",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"dotenv-safe": "^6.1.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"googleapis": "^40.0.0",
"helmet": "^3.18.0",
"js-cookie": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"method-override": "^3.0.0",
"morgan": "^1.9.1",
"nanoid": "^2.0.3",
"normalizr": "^3.3.0",
"pg": "^7.11.0",
"prop-types": "^15.7.2",
"query-string": "^6.8.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-react-hook": "^3.3.2",
"redux-thunk": "^2.3.0",
"sequelize": "^5.8.6",
"sequelize-cli": "^5.4.0",
"swagger-jsdoc": "^3.2.9",
"swagger-ui-express": "^4.0.2",
"whatwg-fetch": "^3.0.0"
},
"license": "MIT"
}