-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.4 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
{
"name": "google-front-end-web-developer",
"version": "1.0.0",
"description": "Google Front-End Web Developer Nanodegree Program",
"main": "index.js",
"repository": "git@github.com:gavar/google-front-end-web-developer.git",
"author": "Max Stankevich <max.stankevich.me@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"preinstall": "yarn use-yarn || npx use-yarn",
"clean": "lerna clean --yes && del-cli **/yarn.lock **/package-lock.json **/*.log **/bower_components && rimraf node_modules",
"build": "lerna exec yarn build",
"lint": "tslint --project tsconfig.json",
"lint-fix": "tslint --project tsconfig.json --fix",
"lint-uniq": "lint | sed 's/^.*]://' | sort | uniq"
},
"devDependencies": {
"@types/browser-sync": "^0.0.39",
"@types/fs-extra": "^5.0.2",
"@types/socket.io": "^1.4.33",
"browser-sync": "^2.23.7",
"del-cli": "^1.1.0",
"fs-extra": "^5.0.0",
"lerna": "^2.10.2",
"ts-node": "^7.0.0",
"tsconfig-paths": "^3.3.1",
"tslib": "^1.9.3",
"tslint": "^5.9.1",
"typescript": "^2.9.2",
"use-yarn": "^2.2.0"
},
"workspaces": {
"nohoist": [
"**/$"
],
"packages": [
"app/*",
"packages/*",
"exploring-js/*",
"frontend-apps/*",
"frontend-apps/10/*",
"frontend-apps/11/*",
"web-programming/*",
"web-foundations/*",
"responsive-images/*"
]
}
}