-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
32 lines (32 loc) · 1.08 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
{
"name": "example-ft-ui",
"private": true,
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "webpack --mode=development",
"dev": "nodemon --ext js,jsx",
"start": "node server/start.js",
"pretest": "npm run build",
"test": "../../node_modules/.bin/jest"
},
"dependencies": {
"@financial-times/dotcom-middleware-navigation": "file:../../packages/dotcom-middleware-navigation",
"@financial-times/dotcom-ui-layout": "file:../../packages/dotcom-ui-layout",
"@financial-times/dotcom-ui-shell": "file:../../packages/dotcom-ui-shell",
"express": "^4.21.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sucrase": "^3.10.1"
},
"devDependencies": {
"@financial-times/dotcom-build-js": "file:../../packages/dotcom-build-js",
"@financial-times/dotcom-build-sass": "file:../../packages/dotcom-build-sass",
"@financial-times/dotcom-build-base": "file:../../packages/dotcom-build-base",
"n-ui-foundations": "^9.0.0",
"nodemon": "^1.18.9",
"ready-state": "^2.0.5",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}