This repository has been archived by the owner on Aug 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 2.06 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
{
"name": "frontend-dings",
"version": "1.0.0",
"description": "Demoapp that uses TokenX",
"type": "module",
"scripts": {
"dev-client": "NODE_ENV=development $(npm bin)/parcel src/client/index.html",
"test-client": "$(npm bin)/jest --testPathPattern=src/client",
"build-client": "NODE_ENV=production $(npm bin)/rimraf dist/client && npm run test-client && $(npm bin)/parcel build --no-source-maps --target client --dist-dir dist/client src/client/index.html",
"dev-server": "NODE_ENV=development node src/server/index.js",
"test-server": "NODE_ENV=development $(npm bin)/jest --testPathPattern=src/server",
"build-server": "NODE_ENV=production $(npm bin)/rimraf dist/server && npm run test-server && $(npm bin)/parcel build --no-source-maps --target server --dist-dir dist/server src/server/index.js",
"test": "npm run test-client && npm run test-server"
},
"client": "dist/client/index.html",
"server": "dist/server/index.js",
"targets": {
"client": {
"context": "browser"
},
"server": {
"context": "node"
}
},
"author": "https://nais.io/",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.14.0",
"body-parser": "^1.19.0",
"connect-redis": "^5.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"express-session": "^1.17.1",
"node-fetch": "^2.6.1",
"openid-client": "^4.7.2",
"redis": "^3.1.1",
"winston-logstash-format": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/polyfill": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@types/react": "^16.9.50",
"cssnano": "^5.0.4",
"jest": "^26.4.2",
"parcel": "^2.0.0-beta.2",
"postcss": "^8.3.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.13.0",
"rimraf": "^3.0.2"
}
}