-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.39 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
{
"name": "ft-tech-test",
"version": "0.1.0",
"description": "FT technical test",
"main": "app.js",
"private": true,
"directories": {
"test": "test"
},
"engines": {
"node": ">=16"
},
"scripts": {
"test": "jest --env=node",
"build:client": "webpack --watch",
"server": "npx @dotenvx/dotenvx run -- nodemon -L app.js",
"start": "rm -rf dist && npm-run-all --parallel build:client server"
},
"author": "Financial Times Ltd.",
"license": "MIT",
"dependencies": {
"axios": "^1.7.4",
"axios-cache-interceptor": "^1.5.3",
"express": "^4.17.3",
"express-handlebars": "^6.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sucrase": "^3.28.0"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.24.7",
"@dotenvx/dotenvx": "^1.7.0",
"@types/jest": "^29.5.12",
"babel-loader": "^8.2.3",
"file-loader": "^6.2.0",
"jest": "^29.7.0",
"node-mocks-http": "^1.15.1",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"supertest": "^6.2.2",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
},
"peerDependencies": {
"@financial-times/o-colors": "^6.7.0",
"@financial-times/o-grid": "^6.1.8",
"@financial-times/o-message": "^5.4.4",
"@financial-times/o-typography": "^7.6.2"
}
}