-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1.16 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
{
"name": "new.preprocess.io",
"version": "1.0.0",
"dependencies": {
"core-js": "^3.1.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-markdown": "^4.0.8",
"react-router-dom": "^5.0.0",
"react-typing-animation": "^1.6.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"parcel-bundler": "^1.12.4",
"parcel-plugin-md-fm": "^0.3.0",
"postcss-custom-properties": "^8.0.10",
"postcss-nested": "^4.1.2",
"prop-types": "^15.7.2",
"tailwindcss": "^1.0.3"
},
"scripts": {
"start": "NODE_ENV=development && parcel index.html --cache-dir .cache --out-dir .build --target browser",
"build": "NODE_ENV=production && rm -rf .build && parcel build index.html --cache-dir .cache --out-dir .build --target browser",
"deploy": "npm run build && rsync --delete --recursive .build/* [email protected]:/home/forge/preprocess.io"
},
"author": "Christopher Pitt <[email protected]>",
"license": "MIT"
}