-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.1 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
{
"name": "production",
"version": "1.0.0",
"scripts": {
"build": "NODE_ENV=production node -r @babel/register node_modules/.bin/webpack --progress --display-modules --config webpack.config.js",
"clean": "rm -rf dist/ && rm -rf public/app",
"start": "npm run clean & NODE_ENV=development nodemon src/backend --watch src/backend --exec babel-node --presets @babel/preset-env",
"start:production": "npm run stop && npm run build && NODE_ENV=production pm2 start --interpreter babel-node src/backend",
"stop": "pm2 kill",
"lint": "eslint --ext .jsx,.js src",
"test": "jest --no-cache"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/config/jest/setupTestFramework.js"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"moduleNameMapper": {
"^.+\\.(scss)$": "identity-obj-proxy"
}
},
"author": "Carlos Santana",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-module-resolver": "^3.2.0",
"css-loader": "^2.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16.3": "^1.6.2",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"express": "^4.16.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.5.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.10",
"pm2": "^3.3.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.1.0",
"webpack-cli": "^3.2.3",
"webpack-dev-middleware": "^3.6.1",
"webpack-hot-middleware": "^2.24.3",
"webpack-hot-server-middleware": "^0.6.0",
"webpack-node-externals": "^1.7.2",
"webpack-notifier": "^1.7.0"
}
}