-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 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
{
"name": "checkin-client",
"version": "1.0.0",
"description": "Web client for checkin",
"main": "index.js",
"scripts": {
"build": "cp -R html dist && webpack --config webpack/config.prod",
"dev-server": "webpack-dev-server --hot --inline --config webpack/config.dev",
"lint": "tslint -e node_modules -p tsconfig.json -t stylish",
"lint:fix": "tslint -e node_modules -p tsconfig.json --fix",
"test": "jest"
},
"author": "Gabriel Foust",
"license": "ISC",
"dependencies": {
"@types/jquery": "^3.3.6",
"@types/react": "^16.4.11",
"@types/react-dom": "^16.0.7",
"@types/react-redux": "^6.0.6",
"autoprefixer": "^9.1.3",
"bootstrap": "^4.1.3",
"css-loader": "^1.0.0",
"jquery": "^3.3.1",
"node-sass": "^4.9.3",
"popper.js": "^1.14.4",
"postcss-loader": "^3.0.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.22.1",
"ts-loader": "^4.5.0",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
"typings-for-css-modules-loader": "^1.7.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.4"
},
"devDependencies": {
"@types/react-router": "^4.0.31",
"@types/react-router-dom": "^4.3.1"
}
}