-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.49 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
100
101
102
103
104
105
106
107
108
109
{
"name": "colorange",
"version": "1.0.0",
"description": "Organize your apps on your phone by color.",
"main": "build/index.js",
"files": [
"build/",
"dist/"
],
"scripts": {
"build": "npm run build-client && npm run build-server",
"build-client": "rimraf dist && webpack",
"build-server": "rimraf build && npm run format && npm run lint && tsc && copyfiles -f src/server/assets/**/* build/assets",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:run:record": "cypress run --record",
"dev": "env-cmd -e development npm start",
"format": "prettier --write .",
"lint": "eslint \"src/**/*.ts\"",
"percy": "percy exec -- cypress run",
"start": "node --no-warnings build/index.js",
"start:dev": "start-server-and-test dev http://localhost:3000 webpack-dev-server",
"test": "start-server-and-test test-server-CI http://localhost:3000 percy",
"test-local": "start-server-and-test test-server http://localhost:3000 cy:run",
"test-server": "env-cmd -e test npm start",
"test-server-CI": "npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexlee-dev/app-color-organizer.git"
},
"author": "Alex Lee <www.alexlee.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexlee-dev/app-color-organizer/issues"
},
"homepage": "https://github.com/alexlee-dev/app-color-organizer#readme",
"devDependencies": {
"@percy/cypress": "^2.3.1",
"@rckeller/cypress-unfetch": "^1.0.1",
"@svgr/webpack": "^5.3.1",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.3",
"@types/mongoose": "^5.7.8",
"@types/morgan": "^1.9.0",
"@types/multer": "^1.4.2",
"@types/node": "^13.9.8",
"@types/node-fetch": "^2.5.5",
"@types/papaparse": "^5.0.3",
"@types/progress": "^2.0.3",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-router-dom": "^5.1.4",
"@types/sharp": "^0.24.0",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"copyfiles": "^2.2.0",
"css-loader": "^3.4.2",
"cypress": "^4.4.0",
"cypress-file-upload": "^4.0.6",
"env-cmd": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.19.0",
"html-webpack-plugin": "^4.0.4",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"source-map-loader": "^0.2.4",
"start-server-and-test": "^1.10.11",
"style-loader": "^1.1.3",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"url-loader": "^4.0.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.9.1",
"@sentry/browser": "^5.15.4",
"@sentry/node": "^5.15.4",
"app-store-scraper": "^0.16.2",
"chalk": "^3.0.0",
"colorthief": "^2.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"file-loader": "^6.0.0",
"logrocket": "^1.0.7",
"mongoose": "^5.9.7",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"node-fetch": "^2.6.0",
"node-vibrant": "^3.1.5",
"ora": "^4.0.3",
"papaparse": "^5.1.1",
"progress": "^2.0.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.1.2",
"react-swipeable-views": "^0.13.9",
"sharp": "^0.25.2",
"uuid": "^7.0.3"
}
}