-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 873 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
{
"name": "tsdemo",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"runjs": "babel-node",
"runts": "ts-node",
"testts": "mocha -r ts-node/register --extension ts",
"testjs": "mocha -r @babel/register",
"ppt": "gulp --cwd presentations --gulpfile presentations/build.js dev",
"ppt-export": "gulp --cwd presentations --gulpfile presentations/build.js export"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@babel/register": "^7.6.2",
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"gulp": "^4.0.2",
"mocha": "^6.2.1",
"typescript": "^3.6.4"
},
"dependencies": {
"http-server": "^0.11.1",
"pochani": "^1.1.3",
"ts-node": "^8.4.1"
}
}