This repository has been archived by the owner on Aug 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
executable file
·85 lines (85 loc) · 2.31 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "rsschool-ui",
"version": "0.0.1",
"description": "UI for rsschool",
"license": "MIT",
"repository": "github:rolling-scopes/rsschool-ui",
"browserslist": [
"chrome 45",
"chrome 49",
"chrome >= 61",
"firefox >= 56",
"ie >= 11",
"safari >= 9",
"edge >= 14"
],
"scripts": {
"start": "node server.js",
"build": "next build src",
"prod": "next start -p 8080",
"lint": "tslint -c tslint.json --project tsconfig.json",
"format": "prettier --config .prettierrc.json --write \"./src/**/*.ts\" \"./src/**/*.tsx\"",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.(ts|tsx)": [
"npm run format",
"git add"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.0-14",
"@fortawesome/free-brands-svg-icons": "5.1.0-11",
"@fortawesome/free-solid-svg-icons": "5.1.0-11",
"@fortawesome/react-fontawesome": "0.1.4",
"@zeit/next-css": "~1.0.1",
"@zeit/next-sass": "~1.0.1",
"@zeit/next-typescript": "~1.1.1",
"axios": "^0.19.0",
"bootstrap": "~4.3.1",
"core-js": "~3.1.3",
"date-fns": "~1.30.1",
"express": "~4.17.1",
"final-form": "~4.13.0",
"http-proxy-middleware": "~0.19.1",
"is-url": "1.2.4",
"lodash.round": "^4.0.4",
"next": "~8.1.0",
"react": "~16.8.6",
"react-datepicker": "~2.8.0",
"react-dom": "~16.8.6",
"react-final-form": "~4.1.0",
"react-select": "~3.0.3",
"react-table": "~6.10.0",
"reactstrap": "~8.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.4.0",
"@types/enzyme": "3.1.11",
"@types/enzyme-to-json": "1.5.1",
"@types/is-url": "1.2.28",
"@types/lodash.round": "^4.0.6",
"@types/next": "~8.0.4",
"@types/node": "~8.0.47",
"@types/react": "~16.8.13",
"@types/react-datepicker": "~2.3.0",
"@types/react-dom": "~16.8.4",
"@types/react-select": "~2.0.19",
"@types/react-table": "~6.8.1",
"@types/reactstrap": "~8.0.1",
"cross-env": "~5.2.0",
"husky": "3.0.0",
"lint-staged": "~8.1.5",
"node-sass": "~4.12.0",
"npm-run-all": "~4.1.5",
"prettier": "~1.18.2",
"tslint": "~5.18.0",
"tslint-react": "~4.0.0",
"typescript": "~3.5.3"
},
"husky": {
"hooks": {
"pre-commit-disabled": "npm-run-all lint-staged lint test"
}
}
}