-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.51 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
51
52
53
54
55
56
57
{
"name": "taxi-web",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:vulpemventures/taxi-web.git",
"author": "Vulpem Ventures Team",
"license": "MIT",
"engines": {
"node": ">=12"
},
"browserslist": [
"last 2 versions",
"not dead"
],
"scripts": {
"watch": "tsdx watch -i ./src/index.tsx",
"build": "tsdx build -i ./src/index.tsx",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"scss": "npx node-sass --output-style compressed -o public/css public/scss",
"serve": "npx parcel --no-cache --port 8080 public/index.html",
"bundle": "yarn scss && yarn build && npx parcel build --no-cache public/index.html",
"deploy": "npx cpx CNAME dist && npx push-dir --dir=dist --branch=gh-pages"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"bulma": "^0.9.0",
"bulma-pageloader": "^0.3.0",
"copy-lite": "^0.1.2",
"cpx": "^1.5.0",
"google-protobuf": "^3.14.0",
"husky": "^4.2.5",
"parcel-bundler": "^1.12.4",
"push-dir": "^0.4.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass": "^1.26.10",
"taxi-protobuf": "vulpemventures/taxi-protobuf",
"ts-node": "^8.10.2",
"tsdx": "^0.13.2",
"tslib": "^2.0.0",
"typescript": "^3.9.6"
}
}