-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.12 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "action-items",
"version": "1.0.0",
"description": "App para ajudar na gestão de Action Items de Sprints",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production rimraf ./build && tsc && webpack --config=webpack.config.js --mode=production",
"start": "concurrently \"npm run start:api\" \"npm run start:app\"",
"start:api": "NODE_ENV=development nodemon",
"start:app": "NODE_ENV=development webpack serve --config=webpack.config.js",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:ci": "npm test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JulianoPadilha/action-items.git"
},
"keywords": [
"sprint",
"kanban",
"scrum",
"action",
"items",
"development",
"agile"
],
"author": "Juliano Padilha",
"license": "ISC",
"bugs": {
"url": "https://github.com/JulianoPadilha/action-items/issues"
},
"homepage": "https://github.com/JulianoPadilha/action-items#readme",
"dependencies": {
"@babel/runtime": "^7.12.13",
"body-parser": "^1.19.0",
"config": "^3.3.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongoose": "^5.11.14",
"postcss-import": "^14.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@types/config": "0.0.38",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"autoprefixer": "^10.2.4",
"babel-loader": "^8.2.2",
"concurrently": "^5.3.0",
"css-loader": "^5.0.1",
"eslint": "^7.19.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"file-loader": "^6.2.0",
"git-commit-msg-linter": "^3.0.0",
"html-webpack-plugin": "^5.0.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.5",
"nodemon": "^2.0.7",
"postcss": "^8.2.4",
"postcss-loader": "^5.0.0",
"prop-types": "^15.7.2",
"rimraf": "^3.0.2",
"source-map-loader": "^2.0.0",
"style-loader": "^2.0.0",
"tailwindcss": "^2.0.2",
"ts-jest": "^26.5.0",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webpack": "^5.20.2",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
"webpack-dev-middleware": "^4.1.0",
"webpack-dev-server": "^3.11.2",
"webpack-hot-middleware": "^2.25.0"
}
}