This repository was archived by the owner on Aug 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.31 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.31 KB
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
45
{
"name": "@calva/repl-interactor",
"version": "0.0.20",
"description": "The core of Calva's REPL window",
"scripts": {
"start": "ts-node --inspect=5858 src/server/main.ts",
"dev": "concurrently \"node ./node_modules/nodemon/bin/nodemon.js\" \"npx webpack-dev-server\"",
"netlify": "npx webpack --mode=production",
"prepublish": "npx tsc --lib es2016,dom --target es5 --downlevelIteration --outDir js src/client/index.ts -d"
},
"jsnext:main": "js/index.js",
"main": "js/index.js",
"types": "js/index.d.ts",
"author": {
"name": "Matt Seddon",
"email": "matt@scryetek.com"
},
"repository": {
"type": "git",
"url": "https://github.com/BetterThanTomorrow/repl-interactor"
},
"license": "MIT",
"devDependencies": {
"@types/compression": "0.0.36",
"@types/express": "^4.16.0",
"closure-webpack-plugin": "^2.0.0-rc.15",
"concurrently": "^4.1.0",
"css-loader": "^2.1.0",
"nodemon": "^1.18.9",
"raw-loader": "^1.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.2",
"tslint": "^5.16.0",
"typescript": "^3.2.2",
"webpack": "^4.28.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"compression": "^1.7.3",
"ts-node": "^7.0.1",
"express": "^4.16.4"
}
}