-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.79 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.79 KB
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
{
"name": "@becode/trouvkach",
"version": "0.0.1",
"description": "A simple react/node app, locating the ATMs nearby.",
"author": "Haerphi",
"license": "MIT",
"private": true,
"scripts": {
"lint": "npx eslint --fix --cache --ignore-pattern 'docs/*' src",
"build:server": "npx babel src/server -s --out-dir bin/server",
"work:server": "npx babel src/server -s --watch --verbose --out-dir bin/server",
"build:client": "npx webpack --progress --profile --colors",
"work:client": "npx webpack --env=dev --progress",
"build": "npm run build:server && npm run build:client",
"start": "node ./bin/server/index.js"
},
"lint-staged": {
"*.js": [
"npx eslint --fix --cache",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@becode/eslint-config": "^0.8.2",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.2",
"eslint": "^6.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-unicorn": "^15.0.1",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.0.10",
"lint-staged": "^9.2.5",
"prettier": "^1.18.2",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"express": "^4.17.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
}
}