-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.74 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
{
"name": "fullstack-template",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"homepage": "https://github.com/ryanspoone/fullstack-template.git",
"scripts": {
"test": "mocha --require babel-core/register --config mocharc.json test/",
"lint": "eslint .",
"format": "eslint . --fix",
"server": "babel-node server/start.js",
"client": "babel-node client/start.js",
"start": "concurrently \"npm run server\" \"npm run client\"",
"install-all": "npm install && npm run install-server && npm run install-client",
"install-server": "cd server && npm install",
"install-client": "cd client && npm install && npm run build"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-es2015-modules-commonjs"
]
},
"type": "module",
"author": "Ryan Spoone",
"license": "UNLICENSED",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"build-client": "^1.0.12",
"concurrently": "^6.2.0",
"dotenv": "^10.0.0",
"esm": "^3.2.25"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"mocha": "^9.0.1",
"prettier": "^1.19.1",
"prettier-eslint-cli": "^5.0.0"
}
}