-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 861 Bytes
/
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
{
"name": "markdown-previewer",
"homepage": "https://n0f3.github.io/react-markdown-previewer/",
"version": "0.1.0",
"private": true,
"dependencies": {
"dompurify": "^0.8.5",
"marked": "^0.3.6",
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-bootstrap": "^0.30.10",
"react-dom": "^15.4.2"
},
"devDependencies": {
"eslint": "^3.18.0",
"gh-pages": "^0.12.0",
"react-scripts": "0.9.5",
"serve": "latest"
},
"scripts": {
"start": "react-scripts start",
"now-start": "serve ./build",
"build": "react-scripts build",
"now-build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "./node_modules/react-scripts/eslintrc"
}
}