-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "nteract.io",
"description": "The server for nteract.io",
"version": "2.0.0",
"author": "nteract contributors",
"bugs": {
"url": "https://github.com/nteract/nteract.io/issues"
},
"dependencies": {
"express": "4.18.2",
"isomorphic-fetch": "3.0.0",
"mdi-react": "8.4.0",
"next": "11.1.4",
"polished": "4.2.2",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-fns": "1.4.0",
"react-syntax-highlighter": "9.0.1",
"styled-components": "^6.1.8"
},
"devDependencies": {
"babel-plugin-styled-components": "2.0.7",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"flow-bin": "0.84.0",
"graphql-request": "1.8.2",
"lint-staged": "12.5.0",
"prettier": "2.6.2"
},
"homepage": "https://github.com/nteract/nteract.io#readme",
"license": "BSD-3-Clause",
"lint-staged": {
"./**/*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nteract/nteract.io.git"
},
"scripts": {
"now-build": "npm run build",
"prebuild": "node fetch-members.js",
"build": "next build",
"dev": "npm run prebuild && node server.js",
"flow": "flow",
"prettier": "prettier --write './**/*.js'",
"start": "NODE_ENV=production node server.js"
}
}