-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.18 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
{
"name": "unjournal",
"version": "1.0.0",
"description": "An app in which you can write freely, then toss your words into the digital void",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "parcel ./src/index.html",
"build": "parcel build src/index.html -d build/ --public-url ./",
"deploy": "yarn build && yarn deploy-surge",
"test": "echo \"Tests passed\"",
"deploy-surge": "surge --project build --domain https://unjournal.surge.sh",
"clean": "rimraf dist && rimraf build"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"json5": "^2.1.0",
"moment": "^2.21.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"react-toggle": "^4.0.2",
"styled-components": "^3.2.3",
"styled-flex-component": "^2.2.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"parcel-bundler": "^1.11.0",
"rimraf": "^2.6.2",
"surge": "^0.20.1"
}
}