-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.46 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
{
"name": "template-fullstack",
"version": "2.0.1",
"description": "project template for the React-Express-MySQL cursus in Wild Code School",
"homepage": "https://github.com/wildcodeschool/js-template-fullstack#readme",
"bugs": {
"url": "https://github.com/wildcodeschool/js-template-fullstack/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wildcodeschool/js-template-fullstack.git"
},
"config": {
"cli": "npm"
},
"scripts": {
"postinstall": "cross-env-shell \"husky install && cd ./frontend && $npm_package_config_cli install && cd ../backend && $npm_package_config_cli install\"",
"migrate": "cd ./backend && node migrate.js",
"dev": "cross-env-shell 'concurrently -c green,yellow -t \"HH:mm:ss\" -p \"{name} {time}\" \"$npm_package_config_cli:dev-*\"'",
"dev-front": "cross-env-shell \"cd ./frontend && $npm_package_config_cli run dev\"",
"dev-back": "cross-env-shell \"cd ./backend && $npm_package_config_cli run dev\"",
"lint": "cross-env-shell \"cd ./frontend && $npm_package_config_cli run lint && cd ../backend && $npm_package_config_cli run lint\"",
"fix": "cross-env-shell \"cd ./frontend && $npm_package_config_cli run fix && cd ../backend && $npm_package_config_cli run fix\""
},
"keywords": [],
"author": "Wild Code School",
"license": "MIT",
"devDependencies": {
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"husky": "^8.0.3"
}
}