forked from WeaveTeam/ChatApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 825 Bytes
/
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
{
"name": "weave-todo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "npm run clean:dist",
"clean:dist": "rimraf dist/index.js",
"compile": "npm run clean && tsc && babel src/es6 -d src/js --source-maps inline && browserify --debug src/js/index.js -o dist/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.5.2",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"browserify": "^13.1.0",
"classnames": "^2.2.5",
"jquery": "^3.1.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"typescript": "^1.8.10",
"weavejs": "/Users/franckamayou/git/wva/WeaveJS"
}
}