forked from dmrd/exponent-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.06 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.06 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "expo-docs",
"version": "31.0.0",
"private": true,
"scripts": {
"dev": "concurrently -k 'yarn run mdjs' 'node server.js'",
"build":
"yarn run mdjs-prod && cross-env NODE_ENV=production --max-old-space-size=2048 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",
"import-react-native-docs": "node ./scripts/import-react-native-docs.js"
},
"dependencies": {
"babel-plugin-module-resolver": "3.1.1",
"babel-runtime": "6.23.0",
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"cors": "^2.8.4",
"cross-env": "5.0.1",
"docsearch.js": "^2.5.2",
"emotion": "^9.2.9",
"emotion-server": "^9.2.9",
"express": "^4.16.3",
"front-matter": "^2.3.0",
"fs-extra": "^6.0.1",
"github-slugger": "^1.2.0",
"glob-promise": "^3.4.0",
"hotshot": "^1.0.5",
"jsonfile": "^4.0.0",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.10",
"lodash.debounce": "^4.0.8",
"markdown-in-js": "1.1.4",
"mitt": "1.1.3",
"mkdirp": "^0.5.1",
"next": "^4.2.3",
"nprogress": "0.2.0",
"prettier": "^1.13.5",
"prismjs": "^1.11.0",
"prop-types": "15.6.2",
"query-string": "6.1.0",
"react": "16.4.2",
"react-dom": "16.4.2",
"react-emotion": "^9.2.9",
"scroll-into-view-if-needed": "2.2.8",
"showdown": "^1.8.6",
"smoothscroll-polyfill": "0.4.3",
"webpack": "3.10.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.32",
"@babel/core": "^7.0.0-beta.32",
"concurrently": "^3.6.0",
"lint-staged": "7.2.0",
"minimist": "^1.2.0",
"shelljs": "^0.8.2"
},
"lint-staged": {
"*.js": ["eslint", "prettier --write --no-semi --single-quote", "git add"]
}
}