-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.24 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
{
"name": "react-robot-factory",
"version": "1.0.0",
"description": "A robot factory react application. Features simple CRUD operations.",
"main": "index.js",
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/jest/preprocessor.js"
},
"testMatch": [
"**/*.test.ts"
]
},
"scripts": {
"test": "jest --coverage --colors",
"build": "npm run build:app && npm run build:server",
"build:app": "rimraf dist && webpack --progress --config webpack.config.js",
"build:server": "tsc",
"start:server": "nodemon ./dist/server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/azamanaza/react-robot-factory.git"
},
"keywords": [
"react",
"robot",
"factory"
],
"author": "Miguel Felipe G. Calo",
"license": "ISC",
"bugs": {
"url": "https://github.com/azamanaza/react-robot-factory/issues"
},
"homepage": "https://github.com/azamanaza/react-robot-factory#readme",
"dependencies": {
"@types/jest": "^23.3.1",
"@types/lodash": "^4.14.116",
"@types/react": "^16.4.7",
"@types/react-dom": "^16.0.6",
"@types/react-redux": "^6.0.6",
"debug": "^3.1.0",
"express": "^4.16.3",
"express-list-routes": "^0.1.4",
"lodash": "^4.17.10",
"morgan": "^1.9.0",
"nodemon": "^1.18.4",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@types/debug": "0.0.30",
"@types/es6-promise": "^3.3.0",
"@types/express": "^4.16.0",
"@types/morgan": "^1.7.35",
"@types/redux-mock-store": "^1.0.0",
"awesome-typescript-loader": "^5.2.0",
"axios": "^0.18.0",
"css-loader": "^1.0.0",
"express-list-endpoints": "^3.0.1",
"file-loader": "^1.1.11",
"jest": "^23.5.0",
"mini-css-extract-plugin": "^0.4.1",
"moxios": "^0.4.0",
"node-sass": "^4.9.3",
"redux-mock-store": "^1.5.3",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.3",
"ts-jest": "^23.1.4",
"typescript": "^3.0.1",
"url-loader": "^1.1.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}