-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 853 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
{
"name": "mars-rover",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "babel --extensions '.ts' src -d build",
"build:watch": "babel src --watch --extensions '.ts' --out-dir build",
"start": "node build/index.js",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@babel/preset-typescript": "^7.7.4",
"@types/jest": "^24.0.23",
"@types/prompts": "^2.0.3",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3"
},
"dependencies": {
"core-js": "^3.5.0",
"prompts": "^2.3.0",
"regenerator-runtime": "^0.13.3"
}
}