-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 915 Bytes
/
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
{
"name": "carboat-test",
"version": "1.0.0",
"description": "test technique La Centrale",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"lint": "eslint src",
"lint:fix": "pretty-quick && eslint --fix src",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KevinDung/carboat-test.git"
},
"author": "Kevin Dung",
"license": "ISC",
"bugs": {
"url": "https://github.com/KevinDung/carboat-test/issues"
},
"homepage": "https://github.com/KevinDung/carboat-test#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"mocha": "^7.1.1",
"nodemon": "^2.0.3",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1"
},
"dependencies": {
"dotenv": "^8.2.0"
}
}