-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.38 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
38
39
40
41
42
43
{
"name": "trip-packer",
"version": "1.0.0",
"main": "server.js",
"repository": "https://github.com/robertxluo/trip-packer.git",
"author": "Robert Luo <[email protected]>",
"scripts": {
"start": "node server.js",
"build": "NODE_ENV=production npm run build:css && webpack --mode=production",
"dev": "NODE_ENV=development npm run watch:css && webpack-dev-server --open",
"build:css": "postcss src/assets/styles/tailwind.css -o src/assets/styles/main.css",
"watch:css": "postcss src/assets/styles/tailwind.css -o src/assets/styles/main.css"
},
"license": "MIT",
"dependencies": {
"@reach/router": "^1.3.3",
"express": "^4.17.1",
"postcss-import": "^12.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-draggable": "^4.4.2",
"react-hot-loader": "^4.12.21",
"react-id-generator": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"@babel/preset-react": "^7.10.1",
"@fullhuman/postcss-purgecss": "^2.2.0",
"autoprefixer": "^9.8.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"postcss-cli": "^7.1.1",
"style-loader": "^1.2.1",
"tailwindcss": "^1.4.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}