-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
82 lines (82 loc) · 2.42 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
{
"name": "support.data.gouv.fr",
"version": "0.1.0",
"engines": {
"node": "14.x",
"npm": "7.x"
},
"scripts": {
"prebuild": "npm run clean",
"build": "run-p build:*",
"build:client": "NODE_ENV=production webpack",
"build:server": "tsc",
"clean": "gts clean",
"lint": "gts lint",
"fix": "gts fix",
"start": "NODE_ENV=production npm run start:prod",
"start:dev": "run-p start:dev:*",
"start:dev:client": "webpack --watch",
"start:dev:server": "ts-node-dev --rs --watch 'src/**/*.ts,views/**/*.njk,config/**/*,public/dist/manifest.json' src/infrastructure",
"start:prod": "node dist/infrastructure",
"test": "TS_NODE_TRANSPILE_ONLY=true jest --maxWorkers=1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datagouv/support.data.gouv.fr.git"
},
"license": "AGPLv3",
"bugs": {
"url": "https://github.com/datagouv/support.data.gouv.fr/issues"
},
"homepage": "https://github.com/datagouv/support.data.gouv.fr#readme",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/extra-watch-webpack-plugin": "^1.0.2",
"@types/jest": "^26.0.22",
"@types/marked": "^2.0.2",
"@types/nunjucks": "^3.1.4",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"autoprefixer": "^10.2.5",
"css-loader": "^5.2.1",
"eslint": "^7.24.0",
"extra-watch-webpack-plugin": "^1.0.3",
"file-loader": "^6.2.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.4.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.10",
"postcss-import": "^14.0.1",
"postcss-loader": "^5.2.0",
"postcss-url": "^10.1.3",
"purgecss-webpack-plugin": "^4.0.3",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"tailwindcss": "^2.1.1",
"ts-jest": "^26.5.4",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3",
"url-loader": "^4.1.1",
"webpack": "^5.31.2",
"webpack-cli": "^4.6.0",
"webpack-manifest-plugin": "^3.1.1",
"gts": "^3.1.0",
"@types/node": "^14.11.2"
},
"dependencies": {
"@gouvfr/dsfr": "^1.0.0-rc1.0",
"@hotwired/turbo": "^7.0.0-beta.4",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"marked": "^2.0.3",
"nunjucks": "^3.2.3",
"uuid": "^8.3.2",
"yaml": "^1.10.2",
"yup": "^0.32.9",
"zod": "^3.1.0"
}
}