-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.62 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
45
46
47
48
49
50
{
"name": "typescript-sample-project",
"version": "0.0.0",
"description": "TypeScript sample project",
"main": "index.js",
"scripts": {
"start": "npx ./node_modules/ts-node/dist/bin.js ./src/server/server.ts",
"clean": "rm rf public/scripts/*",
"lint": "./node_modules/.bin/eslint . --ext .js,.ts,.tsx",
"lint-fix": "./node_modules/.bin/eslint . --fix --ext .js,.ts,.tsx",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx rollup -c",
"build-prod": "npx rollup -c --prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DamourYouKnow/typescript-sample-project.git"
},
"author": "DamourYouKnow",
"license": "MIT",
"bugs": {
"url": "https://github.com/DamourYouKnow/typescript-sample-project/issues"
},
"homepage": "https://github.com/DamourYouKnow/typescript-sample-project#readme",
"devDependencies": {
"@types/ace": "0.0.42",
"@types/express": "^4.17.1",
"@types/highlightjs": "^9.12.0",
"@types/marked": "^0.6.5",
"@types/node": "^12.7.5",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"ace-builds": "^1.4.6",
"babel-plugin-transform-function-bind": "^6.22.0",
"eslint": "^6.4.0",
"highlightjs": "^9.12.0",
"marked": "^0.7.0",
"rollup": "^1.21.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.23.0",
"rollup-plugin-uglify": "^6.0.3",
"ts-node": "^8.3.0",
"typescript": "^3.6.3"
},
"dependencies": {
"express": "^4.17.1"
}
}