-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 869 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
28
29
30
31
32
{
"name": "amp-example",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:oahehc/amp-example.git",
"author": "oahehc <[email protected]>",
"license": "MIT",
"scripts": {
"start-server": "nodemon --ignore db/ --ignore examples/ server.js",
"start-amp": "gulp serve",
"start": "concurrently \"yarn start-server\" \"yarn start-amp\"",
"style": "gulp styles"
},
"devDependencies": {
"browser-sync": "^2.26.3",
"concurrently": "^4.1.0",
"del": "^4.1.0",
"gulp": "4.0.0",
"gulp-autoprefixer": "^6.0.0",
"gulp-load-plugins": "^1.5.0",
"gulp-plumber": "^1.2.1",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.0.2",
"lowdb": "^1.0.0",
"nodemon": "^1.19.1"
},
"dependencies": {
"amp-toolbox-cors": "^1.2.0-alpha.2",
"body-parser": "^1.19.0",
"express": "^4.17.1"
}
}