-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 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
{
"name": "retro_tool",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"production": "webpack --config webpack.config.prod.js",
"dev": "webpack-dev-server -d --watch --config webpack.config.dev.js",
"test": "jest --watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"autosize": "^4.0.0",
"axios": "^0.16.2",
"bootstrap": "^3.3.7",
"bootswatch": "^3.3.7",
"chart.js": "^2.6.0",
"firebase": "^4.1.3",
"jquery": "^3.2.1",
"react": "^15.6.1",
"react-bootstrap": "^0.31.1",
"react-dom": "^15.6.1",
"react-router": "^4.1.2",
"react-router-bootstrap": "^0.24.2",
"react-router-dom": "^4.1.2"
},
"devDependencies": {
"@types/autosize": "^3.0.4",
"@types/axios": "^0.14.0",
"@types/bootstrap": "^3.3.35",
"@types/chart.js": "^2.6.1",
"@types/react": "^15.0.39",
"@types/react-bootstrap": "0.0.52",
"@types/react-dom": "^15.5.1",
"@types/react-router": "^4.0.14",
"@types/react-router-bootstrap": "^0.24.2",
"css-loader": "^0.28.4",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"jest": "^20.0.4",
"style-loader": "^0.18.2",
"ts-jest": "^20.0.7",
"ts-loader": "^2.3.0",
"tslint": "^5.5.0",
"typescript": "^2.4.1",
"url-loader": "^0.5.9",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1"
},
"jest": {
"automock": false,
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*test\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}