-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.87 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
{
"name": "react-enterprise-starter",
"version": "0.1.0",
"description": "React application ready to work in enterprise environment",
"main": "index.js",
"scripts": {
"build": "webpack",
"start": "node -r dotenv/config build/server.js dotenv_config_path=env-local.env",
"dev": "nodemon -e ts,tsx,json,css --exec \"npm run build && npm run start\"",
"lint": "tslint --project tsconfig.json",
"test": "npm run test:unit && npm run test:automated",
"test:unit": "jest --config ./jest.config.js",
"test:automated": "jest --config ./jest-puppeteer.config.js",
"test:coverage": "jest --coverage",
"package": "cd build && tar -zcvf artifact.tar.gz server.js static",
"docker:build": "docker image build -t grzegorzjudas/react-enterprise-starter:latest ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/grzegorzjudas/react-enterprise-starter.git"
},
"keywords": [
"react",
"enterprise",
"starter"
],
"author": "Grzegorz Judas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/grzegorzjudas/react-enterprise-starter/issues"
},
"homepage": "https://github.com/grzegorzjudas/react-enterprise-starter#readme",
"dependencies": {
"@material-ui/core": "^4.3.3",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"express": "^4.17.1",
"joi": "^14.3.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/compression": "^1.0.1",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/expect-puppeteer": "^3.3.1",
"@types/express": "^4.17.1",
"@types/jest": "^24.0.18",
"@types/jest-environment-puppeteer": "^4.0.0",
"@types/joi": "^14.3.1",
"@types/puppeteer": "^1.12.3",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.2",
"@types/react-router-dom": "^4.3.5",
"copy-webpack-plugin": "^5.0.4",
"dotenv": "^8.1.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.10.0",
"html-loader": "^0.5.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-puppeteer": "^4.1.0",
"nodemon": "^1.19.1",
"puppeteer": "^1.13.0",
"react-redux": "^7.1.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"tslint": "^5.19.0",
"tslint-config-standard": "^8.0.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
}
}