forked from karls/pux-react-component-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.53 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.53 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
{
"name": "pux-component-test",
"version": "1.0.0",
"description": "Test embedding a React component inside Pux",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"purescript": "^0.10.7",
"purescript-pux": "^7.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-quill": "^1.0.0-beta-1"
},
"devDependencies": {
"connect-history-api-fallback": "^1.3.0",
"express": "^4.14.1",
"html-webpack-plugin": "^2.28.0",
"http-server": "^0.9.0",
"purescript-psa": "^0.4.0",
"purs-loader": "^2.4.0",
"rimraf": "^2.6.1",
"source-map-loader": "^0.1.6",
"webpack": "^2.2.1",
"webpack-bundle-analyzer": "^2.3.0",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1"
},
"scripts": {
"postinstall": "bower cache clean && bower install",
"clean": "rimraf static/dist && rimraf dist && rimraf output",
"build": "npm run clean && webpack --optimize-minimize --config ./webpack.production.config.js --progress --profile --colors",
"watch": "npm run clean && node ./webpack.config.js",
"serve": "http-server static --cors -p 3000",
"start": "npm run watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/karls/pux-react-component-test.git"
},
"author": "Karl Sutt",
"license": "ISC",
"bugs": {
"url": "https://github.com/karls/pux-react-component-test/issues"
},
"homepage": "https://github.com/karls/pux-react-component-test"
}