-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
47 lines (47 loc) · 1.47 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
44
45
46
47
{
"name": "react-basic-starter",
"version": "1.0.0",
"description": "An example react-basic project",
"repository": "lumihq/react-basic-starter",
"scripts": {
"start": "webpack-dev-server -wd --port 3000",
"start-public": "webpack-dev-server -wd --port 3000 --host 0.0.0.0",
"build": "webpack -p",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"build:purs": "spago build",
"pscid:build": "spago build",
"pscid:test": "spago test",
"test": "spago test",
"clean": "rm -rf output build",
"clean:everything": "npm run clean && rm -rf node_modules .spago"
},
"dependencies": {
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "3.5.3",
"gh-pages": "2.2.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"purescript": "^0.13.6",
"purescript-psa": "^0.7.3",
"purs-loader": "^3.7.1",
"resource-hints-webpack-plugin": "0.0.2",
"sass-loader": "8.0.2",
"script-ext-html-webpack-plugin": "^2.1.4",
"source-map-loader": "0.2.4",
"spago": "^0.15.2",
"style-loader": "1.2.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-manifest-plugin": "^2.2.0",
"webpack-subresource-integrity": "^1.4.1"
}
}