-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.38 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
{
"name": "node-cra-server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"client": "cd client && npm run start",
"test": "mocha src/**/*.spec.js",
"dev": "concurrently \"nodemon server.js\" \"npm run client\"",
"build": "cd client && npm install && npm run build",
"start": "npm run build && node server.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{css,html,json,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackson-elfers/node-cra-server.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jackson-elfers/node-cra-server/issues"
},
"homepage": "https://github.com/jackson-elfers/node-cra-server#readme",
"devDependencies": {
"concurrently": "^5.0.0",
"eslint": "^6.5.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"mocha": "^6.2.2",
"nodemon": "^1.19.4",
"prettier": "^1.18.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"check-types": "^11.1.2",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-force-https": "^1.0.0",
"mysql": "^2.17.1"
}
}