-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.95 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.95 KB
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
100
101
{
"name": "kitepaint",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "react-scripts build",
"deploy:beta": "PUBLIC_URL=https://beta.kitepaint.com/static npm run build && SFTP_HOST=192.254.225.178 SFTP_PATH=./public_html/static.beta.kitepaint.com/ node sftp-deployment.js",
"deploy:prod": "PUBLIC_URL=https://kitepaint.com/static npm run build && SFTP_HOST=192.254.225.178 SFTP_PATH=./public_html/static.kitepaint.com/ node sftp-deployment.js",
"eject": "react-scripts eject",
"lint": "eslint ./src",
"pretest": "npm run lint",
"start:embed": "nodemon ./embed/server.js localhost 3001",
"start:react": "react-scripts start",
"start": "concurrently \"npm run start:react\" \"npm run start:embed\"",
"test:debug": "node --inspect-brk /node_modules/.bin/jest --runInBand",
"test": "react-scripts test"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.7",
"@fortawesome/free-solid-svg-icons": "^5.4.2",
"@fortawesome/react-fontawesome": "^0.1.3",
"axios": "^0.18.0",
"canvg": "^1.5.3",
"immutable": "^3.8.2",
"manikin-model": "^1.0.1",
"moment": "^2.24.0",
"normalize.css": "^8.0.0",
"prettier": "^1.14.3",
"prop-types": "^15.6.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-redux": "^5.1.0",
"react-router-dom": "^4.3.1",
"react-scripts": "^5.0.1",
"react-test-renderer": "^16.6.0",
"redux": "^4.0.1",
"redux-actions": "^2.6.3",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.3.0",
"styled-components": "^4.0.3"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 10",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 79,
"functions": 80,
"lines": 80,
"statements": 80
}
},
"collectCoverageFrom": [
"src/**/*.js",
"!src/setupTests.js",
"!src/**/*.test.js"
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.8",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-react": "^7.24.7",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^14.5.2",
"concurrently": "^4.1.0",
"connect": "^3.6.6",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-jest": "^21.27.1",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.1.2",
"jest-environment-enzyme": "^7.0.1",
"jest-enzyme": "^7.0.1",
"jest-styled-components": "^6.3.4",
"lint-staged": "^7.3.0",
"nodemon": "^1.18.9",
"serve-static": "^1.13.2",
"ssh2-sftp-client": "^10.0.3"
}
}