-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.15 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.15 KB
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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "usma",
"version": "0.1.0",
"private": true,
"description": "Collective Ordering Tool",
"license": "MIT",
"repository": "stusherwin/usma",
"author": {
"name": "Stu Sherwin",
"email": "stu.sherwin@gmail.com"
},
"files": [],
"scripts": {
"webpack": "webpack --progress --bail",
"webpack:watch": "PATH=$PATH:../releases/psc-package DEBUG=purs-loader DEBUG_DEPTH=100 webpack --progress --display-error-details --watch",
"webpack:server": "webpack-dev-server --progress --inline --hot",
"webpack:server:debug": "DEBUG=purs-loader* DEBUG_DEPTH=100 webpack-dev-server --progress --inline --hot",
"dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=webpack.config.js",
"tailwind-watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=tailwind.webpack.config.js & webpack:server",
"prod": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=webpack.config.js",
"heroku-postbuild": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=tailwind.webpack.config.js && webpack --progress --bail",
"watch": "npm-run-all --parallel tailwind-watch webpack:server"
},
"dependencies": {
"@types/classnames": "^2.2.6",
"@types/react": "^16.8.13",
"@types/react-dom": "^16.8.4",
"classnames": "^2.2.6",
"css-loader": "^0.28.7",
"file-loader": "^1.1.6",
"lodash.difference": "^4.5.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"style-loader": "^0.19.1",
"ts-loader": "^3.3.1",
"typescript": "^2.6.2",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"wrappy": "^1.0.2"
},
"devDependencies": {
"awesome-typescript-loader": "^3.4.1",
"cross-env": "^5.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"npm-run-all": "^4.1.5",
"postcss": "^6.0.14",
"postcss-loader": "^2.0.8",
"source-map-loader": "^0.2.3",
"style-loader": "^0.19.0",
"tailwindcss": "^0.6.4",
"webpack-dev-server": "^2.0.0"
}
}