-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
51 lines (51 loc) · 1.51 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": "detoxify",
"description": "Generate a fake app to replace any addictive app 📱🙅",
"version": "1.0.0",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/dev -e js,twig --exec babel-node --presets es2015,env",
"transpile": "babel --presets es2015,env -d ./build ./src -s",
"copy-assets": "cp -r ./src/views ./build && cp -r ./src/public ./build",
"clean": "rm -rf build && mkdir build",
"build": "npm run clean && npm run transpile && npm run copy-assets"
},
"repository": {
"type": "git",
"url": "https://github.com/sandoche/Detoxify-app.git"
},
"keywords": [
"digital-detox",
"detox",
"progressive-web-app",
"pwa-apps",
"pwa",
"detoxify"
],
"author": "Sandoche ADITTANE & Farbod SARAF",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sandoche/Detoxify-app/issues"
},
"homepage": "https://detoxify.app/",
"dependencies": {
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"google-play-scraper": "git+https://github.com/facundoolano/google-play-scraper.git",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"twig": "~0.10.3"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"nodemon": "^1.19.1"
}
}