-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 808 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 808 Bytes
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
{
"private": true,
"name": "projector-example",
"version": "1.0.0",
"description": "Example of how to setup a projector repository",
"main": "index.js",
"repository": "projectorjs/projector-example",
"author": "James Kyle <me@thejameskyle.com>",
"license": "MIT",
"scripts": {
"build": "projector ./projector.js build",
"clean": "projector ./projector.js clean",
"test": "projector ./projector.js test"
},
"workspaces": [
"components/*",
"website"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"flow-bin": "^0.49.1",
"projector": "^2.0.0",
"projector-cli": "^3.0.0",
"projector-spawn": "^1.0.0",
"projector-yarn": "^3.0.0"
}
}