-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
44
{
"name": "js-interviews",
"version": "0.0.1",
"description": "Several codes for interviews",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"build:types:watch": "tsc -w --emitDeclarationOnly",
"build:js:watch": "babel -w src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline"
},
"repository": {
"type": "git",
"url": "git+https://github.com/normeno/js-interviews.git"
},
"author": "Nicolas Ormeno",
"license": "MIT",
"bugs": {
"url": "https://github.com/normeno/js-interviews/issues"
},
"homepage": "https://github.com/normeno/js-interviews#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-numeric-separator": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"babel-watch": "^7.0.0",
"concurrently": "^4.1.2",
"mocha": "^6.2.3",
"nodemon": "^1.19.4",
"typescript": "^3.9.7"
},
"dependencies": {
"express": "^4.17.1"
}
}