forked from streetmix/streetmix
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.84 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 3.84 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "streetmix",
"version": "1.3.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/streetmix/streetmix.git"
},
"license": "AGPL-3.0-or-later",
"engines": {
"node": "^20.19.x || ^22.12.x || ^24.0.0",
"npm": ">=10.x"
},
"type": "module",
"workspaces": [
"packages/utils",
"packages/i18n",
"packages/*",
"client",
"docs"
],
"scripts": {
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"start": "nodemon index.js",
"serve": "nodemon -r newrelic index.js",
"build": "npm run build --workspaces --if-present",
"dev-client": "npm run -w @streetmix/client dev",
"dev-server": "nodemon -r dotenv/config --watch app --watch lib --watch index.js --watch app.js index.js --watch packages",
"clean": "rm -rf ./.parcel-cache && rm -rf ./build",
"test": "npm run lint && npm run vitest",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint \"./client/**/*.css\"",
"lint:js": "eslint",
"vitest": "vitest",
"vitest:ci": "vitest run --coverage",
"translations:download": "tsx --env-file=.env packages/i18n/src/download_translations.ts",
"db:migrate": "npx sequelize-cli db:migrate",
"db:migrate:undo": "npx sequelize-cli db:migrate:undo",
"db:create": "npx sequelize-cli db:create",
"pretest:models": "NODE_ENV=test npm run db:migrate",
"test:models": "NODE_ENV=test vitest --watchAll --testPathPattern=app/db/models/_tests_",
"posttest:models": "NODE_ENV=test npm run db:reset",
"prepare": "husky"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,cjs}": [
"prettier --write",
"eslint --fix"
],
"*.{json,css,md,yaml}": [
"prettier --write"
]
},
"alias": {
"process": {
"global": "process"
}
},
"@parcel/resolver-default": {
"packageExports": true
},
"dependencies": {
"axios": "1.12.2",
"axios-retry": "4.5.0",
"chalk": "5.6.2",
"cloudinary": "2.7.0",
"compression": "1.8.1",
"cookie-parser": "1.4.7",
"cookie-session": "2.1.1",
"cors": "2.8.5",
"dotenv": "17.2.2",
"express": "5.1.0",
"express-jwt": "8.5.1",
"glob": "11.0.3",
"hbs": "4.2.0",
"helmet": "8.1.0",
"jwks-rsa": "3.2.0",
"nanoid": "5.1.6",
"newrelic": "13.3.3",
"nodemon": "3.1.10",
"passport": "0.7.0",
"passport-oauth": "1.0.0",
"passport-patreon": "1.0.1",
"pg": "8.16.3",
"sequelize": "6.37.7",
"sequelize-cli": "6.6.3",
"sequelize-mock": "0.10.2",
"svg-sprite": "2.0.4",
"swagger-jsdoc": "6.2.8",
"swagger-ui-express": "5.0.1",
"winston": "3.17.0"
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@eslint/compat": "1.4.0",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.36.0",
"@faker-js/faker": "10.0.0",
"@parcel/transformer-yaml": "2.16.0",
"@typescript-eslint/eslint-plugin": "8.44.1",
"@typescript-eslint/parser": "8.44.1",
"@vitest/coverage-v8": "3.2.4",
"axios-mock-adapter": "2.1.0",
"concurrently": "9.2.1",
"cypress": "15.3.0",
"eslint": "9.36.0",
"eslint-config-love": "125.0.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-jsx": "11.0.0",
"eslint-config-standard-react": "13.0.0",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-cypress": "5.1.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "17.23.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"globals": "16.4.0",
"husky": "9.1.7",
"lint-staged": "16.2.0",
"prettier": "3.6.2",
"supertest": "7.1.4",
"tsx": "4.20.5",
"typescript": "5.9.2",
"vitest": "3.2.4"
}
}