-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "bus-in-carpark-simulator",
"version": "1.0.0",
"description": "The application is a simulation of a robot operated bus moving in a carpark.",
"main": "index.js",
"scripts": {
"start": "npm run build && node ./dist/app.js",
"dev": "nodemon ./src/index.js --exec babel-node",
"test": "jest",
"build": "webpack --mode development"
},
"jest": {
"verbose": true,
"bail": 1,
"collectCoverage": true,
"testRegex": "(/__tests__/.*|(\\.|/)(test))\\.js$"
},
"author": "Theo cho <cdsleaf@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/node": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"prettier": "1.19.1",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"winston": "^3.2.1"
}
}