forked from dmrd/exponent-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.98 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
60
61
62
63
64
65
66
{
"name": "expo-docs",
"version": "28.0.0",
"private": true,
"scripts": {
"dev": "concurrently -k 'yarn run mdjs' 'node server.js'",
"build": "yarn run mdjs-prod && cross-env NODE_ENV=production next build",
"export": "cross-env NODE_ENV=production next export",
"start": "cross-env NODE_ENV=production node server.js",
"lint": "eslint .",
"lint:staged": "lint-staged",
"test": "npm run lint",
"mdjs": "babel-node ./mdjs",
"mdjs-prod": "node ./mdjs --no-watch",
"fix-markdown": "node ./transition/fix-markdown.js",
"clean": "rm -r docs pages/versions generated/navigation-data.json static/images/generated"
},
"dependencies": {
"babel-plugin-emotion": "^8.0.4",
"babel-plugin-root-import": "^5.1.0",
"babel-plugin-transform-define": "1.3.0",
"babel-runtime": "6.23.0",
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"cors": "^2.8.4",
"cross-env": "5.0.1",
"docsearch.js": "^2.4.1",
"emotion": "^8.0.5",
"emotion-server": "^8.0.5",
"express": "^4.16.3",
"front-matter": "^2.3.0",
"fs-extra": "^4.0.2",
"github-slugger": "^1.2.0",
"glob-promise": "^3.1.0",
"hotshot": "^1.0.5",
"jsonfile": "^4.0.0",
"jsonwebtoken": "^7.4.1",
"lodash": "^4.17.3",
"lodash.debounce": "^4.0.8",
"markdown-in-js": "1.1.3",
"mitt": "1.1.2",
"mkdirp": "^0.5.1",
"next": "^4.2.3",
"nprogress": "0.2.0",
"prettier": "^1.10.2",
"prismjs": "^1.11.0",
"prop-types": "15.5.10",
"query-string": "4.3.4",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-emotion": "^8.0.5",
"scroll-into-view-if-needed": "1.1.0",
"showdown": "^1.8.5",
"smoothscroll-polyfill": "0.3.5"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.32",
"@babel/core": "^7.0.0-beta.32",
"concurrently": "^3.3.0",
"lint-staged": "4.0.0",
"shelljs": "^0.7.8"
},
"lint-staged": {
"*.js": ["eslint", "prettier --write --no-semi --single-quote", "git add"]
}
}