This repository has been archived by the owner on Jan 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.52 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
48
49
50
51
{
"name": "@dosomething/puck-client",
"version": "1.6.0",
"description": "The client for Puck",
"module": "es/index.js",
"main": "cjs/index.js",
"scripts": {
"test": "npm run test",
"lint": "eslint",
"start": "NODE_ENV=development webpack --watch",
"build:dev": "NODE_ENV=development webpack",
"build:browser": "NODE_ENV=production webpack",
"build:es": "NODE_ENV=production babel lib --out-dir es",
"build:cjs": "NODE_ENV=test babel lib --out-dir cjs",
"build": "npm run build:browser && npm run build:es && npm run build:cjs",
"prepublishOnly": "npm run build"
},
"babel": {
"presets": [
"@dosomething/babel-config"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/DoSomething/puck-client.git"
},
"author": "Joe Kent <jkent@dosomething.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DoSomething/puck-client/issues"
},
"homepage": "https://github.com/DoSomething/puck-client#readme",
"devDependencies": {
"@dosomething/babel-config": "^2.2.2",
"@dosomething/eslint-config": "^3.1.0",
"@dosomething/webpack-config": "^4.1.1",
"babel-cli": "^6.26.0",
"babel-eslint": "7.2.3",
"eslint-loader": "^2.0.0",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"@researchgate/react-intersection-observer": "^0.7.3",
"intersection-observer": "^0.5.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"socket.io-client": "^2.1.1"
}
}