-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.44 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "fals-one-note",
"description": "",
"author": "",
"version": "0.1.0",
"scripts": {
"prettier":
"prettier --loglevel warn --write fix \"src/**/*.{ts,json,js}\"",
"tsc": "npm run prettier && tsc -p tsconfig.json -w",
"server": "browser-sync start --config bsconfig.json",
"copy": "cpx \"src/**/!(*.ts|*.java)\" dist --watch",
"cfg": "cpx \"config/cfg.js\" dist --watch",
"backend": "node ./dist/Backend/serverLauncher.js ./server.json",
"start":
"rimraf dist && concurrently \"npm run cfg\" \"npm run tsc\" \"npm run copy\" \"npm run server\"",
"validate": "./node_modules/.bin/validate-office-addin",
"createStorage":
"node ./dist/Backend/createStorageLauncher.js ./server.json",
"gen":
"rimraf ./src/Service/Fals/*/ && mvn generate-sources && copyfiles -u 3 ./src/main/java/**/*.ts ./src/Service/Fals && npm run prettier"
},
"prettier": {
"trailingComma": "es5",
"overrides": [
{
"files": "*.json",
"options": {
"tabWidth": 4
}
}
]
},
"dependencies": {
"@angular/common": "^5.1.3",
"@angular/compiler": "^5.1.3",
"@angular/core": "^5.1.3",
"@angular/forms": "^5.1.3",
"@angular/platform-browser": "^5.1.3",
"@angular/platform-browser-dynamic": "^5.1.3",
"@angular/router": "^5.1.3",
"@types/express": "^4.11.0",
"@types/socket.io": "^1.4.31",
"@types/socket.io-client": "^1.4.32",
"bootstrap": "^3.3.7",
"core-js": "^2.5.3",
"cors": "^2.8.4",
"express": "^4.16.2",
"jquery": "^3.2.1",
"office-addin-validator": "^1.0.5",
"office-ui-fabric-js": "^1.4.0",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.5.5",
"socket.io-client": "1.7.4",
"systemjs": "^0.20.19",
"zone.js": "^0.8.18"
},
"devDependencies": {
"@types/angular": "^1.6.2",
"@types/jquery": "^2.0.39",
"@types/office-js": "^0.0.37",
"browser-sync": "^2.18.13",
"concurrently": "^3.1.0",
"copyfiles": "^1.2.0",
"cpx": "^1.5.0",
"debug": "^3.1.0",
"module-alias": "^2.0.3",
"prettier": "^1.10.2",
"rimraf": "^2.6.2",
"socket.io": "1.7.4",
"typescript": "^2.6.2"
}
}