-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.53 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
46
47
48
49
50
51
52
53
54
55
{
"name": "web-starter",
"version": "0.0.1",
"description": "Starter code to build scalable web application using modern web technologies",
"main": "start.js",
"dependencies": {
"d3": "^5.2.0",
"handlebars": "^4.0.11",
"hbsp": "^0.2.2",
"mvdom": "^0.5.5",
"qs": "^6.5.2",
"typescript": "^2.9.1"
},
"devDependencies": {
"@types/chokidar": "^1.7.5",
"@types/d3": "^5.0.0",
"@types/express": "^4.16.0",
"@types/handlebars": "^4.0.37",
"@types/js-yaml": "^3.11.1",
"@types/micromatch": "^3.1.0",
"@types/minimist": "^1.2.0",
"@types/mocha": "^5.2.1",
"@types/qs": "^6.5.1",
"chokidar": "^2.0.3",
"cmdrouter": "^0.3.1",
"express": "^4.16.3",
"fast-glob": "^2.2.2",
"fs-extra-plus": "^0.2.3",
"js-yaml": "^3.12.0",
"minimist": "^1.2.0",
"mocha": "^5.2.0",
"module-alias": "^2.0.1",
"p-spawn": "^0.4.1",
"postcss": "^6.0.22",
"postcss-import": "^11.1.0",
"postcss-mixins": "^6.2.0",
"postcss-nested": "^3.0.0",
"rollup": "^0.59.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-multi-entry": "^2.0.2",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-typescript2": "^0.14.0",
"sketchdev": "^0.3.0",
"ts-node": "^6.1.0"
},
"scripts": {
"start": "./node_modules/.bin/ts-node server/src/start.ts",
"watch": "./node_modules/.bin/ts-node scripts/build.ts watch",
"build": "./node_modules/.bin/ts-node scripts/build.ts build"
},
"engines": {
"node": ">=8.2.0"
},
"author": "BriteSnow"
}