-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.48 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
{
"name": "trainingplaner",
"description": "Root package.json. It's running core services located in subdirectories.",
"version": "0.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nokia-wroclaw/innovativeproject-training-planner"
},
"dependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/runtime": "^7.9.6",
"@shelf/jest-mongodb": "^1.1.5",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.19.0"
},
"scripts": {
"lint:fix": "eslint --fix .",
"lint": "eslint .",
"test": "client/node_modules/.bin/jest .",
"travis": "npm i --no-fund --only=prod && npm i --prefix client -no-optional --no-fund --loglevel warn && npm i --prefix server --no-fund",
"build": "npm run build --prefix client",
"start": "nodemon server/server.js",
"client": "npm start --prefix client",
"rm": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"init": "npm i --no-fund && npm i --prefix client --no-optional --no-fund --loglevel warn && npm i --prefix server --no-fund",
"reinstall": "npm run rm && npm run init",
"dev": "concurrently \"npm start\" \"npm run client\""
},
"devDependencies": {
"concurrently": "^5.2.0",
"nodemon": "^2.0.3"
},
"jest": {
"preset": "@shelf/jest-mongodb",
"testEnvironment": "jsdom"
}
}