forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 675 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 675 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
{
"name": "codesandbox-deps",
"version": "0.1.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/codesandbox/codesandbox-client",
"directory": "packages/deps"
},
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "yarn build:clean && yarn build:rollup",
"build:dev": "yarn build",
"build:clean": "rimraf dist",
"build:rollup": "rollup -c"
},
"dependencies": {
"tern": "^0.21.0"
},
"devDependencies": {
"rimraf": "^2.6.3",
"rollup": "^1.16.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.4"
}
}