forked from libeo-tech/take-home-test-inato
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 769 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 769 Bytes
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
{
"name": "take-home-test",
"version": "1.0.0",
"repository": "git@github.com:inato/take-home-test.git",
"author": "inato",
"license": "MIT",
"private": true,
"engines": {
"yarn": ">=1.7.0",
"node": "=16.x"
},
"scripts": {
"lint": "eslint .",
"test": "jest",
"start": "babel-node index.js"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^27.5.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^2.6.2",
"jest": "24.8.0",
"prettier": "^1.14.3",
"regenerator-runtime": "^0.12.1"
}
}