-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "server",
"version": "1.0.0",
"description": "Boilerplate Example of Node + Express + Cypress + Webpack + Babel + Git + Typescript",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cypress:open": "cypress open",
"server": "node app.js",
"build": "webpack --config webpack.config.js"
},
"author": "Richard Carrigan <richardcarrigan@hotmail.com>",
"license": "ISC",
"dependencies": {
"@sentry/browser": "^5.21.1",
"express": "^4.17.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/lodash": "^4.14.159",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"cypress": "^4.12.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2"
}
}