-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.09 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.09 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
{
"name": "typescript-training",
"version": "1.0.0",
"type": "module",
"description": "Typescript Training",
"main": "index.js",
"scripts": {
"start": "serve -l tcp://127.0.0.1:9000 docs",
"build": "rollup -c tools/rollup.config.js",
"eslint": "eslint --ext .ts src || true",
"compile": "tsc --noEmit --project './tsconfig.json' || true",
"declaration": "tsc -t ESNext -m ESNext -d --emitDeclarationOnly --declarationDir d src/index.ts || true",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "drawmindmap",
"license": "MIT",
"dependencies": {
"dat.gui": "^0.7.6",
"three": "^0.113.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-sucrase": "^3.0.0",
"@rollup/plugin-typescript": "^3.0.0",
"@types/dat.gui": "^0.7.5",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-plugin-import": "^2.20.1",
"rollup": "^1.31.1",
"serve": "^11.3.0",
"tslib": "^1.11.0",
"typescript": "^3.8.2"
}
}