-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 804 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 804 Bytes
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
{
"name": "typescript-example",
"private": true,
"version": "1.0.0",
"description": "An example testing a simple TypeScript app with Intern",
"scripts": {
"test": "intern",
"start": "intern serveOnly",
"build": "tsc && tsc -p tests",
"clean": "del 'src/**/*.js' 'tests/**/*.js'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/backbone": "~1.4.1",
"@types/backbone.localstorage": "~1.0.32",
"@types/jquery": "~3.3.31",
"@types/systemjs": "~0.20.6",
"backbone": "~1.4.0",
"backbone.localstorage": "~2.0.2",
"del-cli": "~3.0.0",
"intern": "~4.7.1",
"jquery": "~3.5.0",
"systemjs": "~0.20.19",
"todomvc-app-css": "~2.3.0",
"todomvc-common": "~1.0.5",
"typescript": "~3.7.4",
"underscore": "~1.9.1"
}
}