-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.17 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
{
"name": "cloudy-build",
"version": "1.0.0",
"description": "Fast UI for Unity Cloud Build.",
"license": "MIT",
"private": true,
"repository": "https://github.com/solarsailer/cloudy-build/",
"author": {
"name": "Matthieu Oger",
"url": "https://solarsailer.net/"
},
"keywords": [],
"scripts": {
"start": "nodemon server/index.js",
"serve": "NODE_ENV=production node server/index.js",
"build": "next build",
"prod": "next build && yarn serve"
},
"dependencies": {
"@zeit/next-typescript": "1.1.1",
"axios": "^0.18.0",
"compression": "^1.7.3",
"express": "^4.16.3",
"next": "^7.0.0",
"polished": "^2.0.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"styled-components": "^3.4.9"
},
"devDependencies": {
"@types/next": "6.1.6",
"@types/react": "^16.4.14",
"babel-plugin-styled-components": "^1.7.1",
"nodemon": "^1.18.4"
},
"babel": {
"presets": [
"next/babel",
"@zeit/next-typescript/babel"
],
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": true,
"preprocess": false
}
]
]
}
}