-
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.66 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.66 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": "bike-gears",
"version": "0.0.1",
"repository": "git@github.com:banciur/bike-gears.git",
"author": "Tomek Banach <tomek@banciur.org>",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "webpack --config ./webpack/webpack.config.prod.js",
"format": "prettier --list-different '**/*.{ts,tsx,js,json,md,gql}'",
"format:fix": "prettier --write '**/*.{ts,tsx,js,json,md,gql}'",
"test": "mocha --require ts-node/register test/**/*.ts --recursive",
"tslint": "tslint --project ./tsconfig.json --format stylish",
"start": "webpack-dev-server --open --config ./webpack/webpack.config.dev.js"
},
"husky": {
"hooks": {
"pre-push": "yarn format && yarn tslint && yarn test"
}
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/lodash": "^4.14.119",
"@types/mocha": "^5.2.5",
"@types/react": "^16.7.7",
"@types/react-dom": "^16.0.10",
"@types/reactstrap": "^6.4.2",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.2.0",
"mocha": "^5.2.0",
"prettier": "^1.15.1",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6",
"typestrict": "^1.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.11",
"webpack-merge": "^4.1.5"
},
"dependencies": {
"bootstrap": "^4.3.1",
"lodash": "^4.17.19",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"reactstrap": "^6.5.0"
}
}