-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1004 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
34
35
36
37
38
39
{
"name": "wiki-frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "BUILD_ENV=production parcel build index.html",
"format": "prettier --single-quote --print-width=120 --no-semi --write ./app/**.jsx ./app/**/**.jsx",
"start": "BUILD_ENV=development parcel index.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"babel": {
"presets": [
"env",
"react"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"highlightjs": "^9.12.0",
"marked": "^0.6.1",
"prop-types": "^15.6.2",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-loading": "^2.0.3",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"styled-components": "^3.4.10"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"parcel-bundler": "^1.11.0",
"prettier": "^1.16.4",
"prettier-check": "^2.0.0"
}
}