forked from touchstonejs/touchstonejs-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "touchstonejs-starter",
"version": "0.0.2",
"description": "Touchstone Starter",
"main": "src/js/app.js",
"author": "Jed Watson",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/touchstonejs/touchstonejs-starter.git"
},
"dependencies": {
"async": "^1.4.2",
"classnames": "^2.1.3",
"cordova-dialogs": "^1.0.2",
"httpify": "^2.0.0",
"react": "^0.13.3",
"react-container": "^0.2.4",
"react-sentry": "^1.0.2",
"react-tappable": "^0.6.0",
"react-timers": "^5.0.0",
"touchstonejs": "^0.6.0"
},
"devDependencies": {
"gulp": "^3.9.0",
"happiness": "*",
"touchstonejs-tasks": "*"
},
"scripts": {
"build": "gulp clean && gulp build",
"build:production": "gulp clean && NODE_ENV=production gulp build",
"lint": "happiness",
"prepare": "gulp clean && gulp prepare",
"prepare:production": "gulp clean && NODE_ENV=production gulp prepare",
"test": "npm run lint",
"start": "gulp clean && gulp dev",
"watch": "gulp clean && gulp watch"
},
"happiness": {
"ignore": [
"platforms",
"plugins",
"src/data",
"www"
]
}
}