-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.46 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
{
"name": "create-amp-page-starter",
"private": true,
"version": "1.0.0-beta.0",
"description": "Starter template for AMP static site generation",
"author": "Michael Becker https://mlbr.xyz",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bemit/create-amp-page-starter.git"
},
"type": "module",
"dependencies": {
"cross-env": "^7.0.3",
"express": "^4.17.1",
"nodemon": "^2.0.6"
},
"devDependencies": {
"@formanta/sass": "~0.22.0",
"concurrently": "^6.2.1",
"create-amp-page": "~1.0.0-beta.1",
"@ampproject/toolbox-optimizer": "^2.8.10",
"cypress": "^9.5.2",
"markdown-it": "^11.0.1",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^5.3.0",
"markdown-it-deflist": "^2.1.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-ins": "^3.0.0",
"markdown-it-mark": "^3.0.0",
"markdown-it-toc-done-right": "^4.1.0",
"normalize.css": "^8.0.1"
},
"scripts": {
"tasks": "gulp --tasks",
"serve": "nodemon server.js",
"start": "cross-env NODE_ENV=development concurrently --kill-others npm:watch npm:tdd-ui",
"watch": "gulp watch",
"build": "cross-env NODE_ENV=production gulp build",
"postbuild": "npm run test-ui",
"tdd-ui": "cypress open",
"test-ui": "cypress run",
"clean": "gulp clean"
}
}