forked from mathigon/textbooks
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 KB
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
{
"name": "@mathigon/textbooks",
"version": "0.3.0",
"description": "Mathigon Textbooks",
"homepage": "https://mathigon.org/",
"repository": "mathigon/textbooks",
"license": "UNLICENSED",
"private": true,
"scripts": {
"server": "nodemon server/app.js --use-strict",
"watch": "grunt concurrent",
"grunt": "grunt textbooks",
"start": "npm run server",
"dev": "npm run grunt && npm run start",
"test": "eslint */*.js"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@mathigon/boost": "^0.3.1",
"@mathigon/core": "^0.2.5",
"@mathigon/fermat": "^0.2.8",
"@mathigon/hilbert": "^0.2.3"
},
"devDependencies": {
"@mathigon/parser": "^0.3.0",
"emojione-assets": "^3.1.1",
"eslint": "^5.12.1",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"grunt": "^1.0.3",
"grunt-autoprefixer": "^3.0.4",
"grunt-concurrent": "^2.3.1",
"grunt-contrib-less": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"marked": "0.6.2",
"nodemon": "^1.19.4",
"pug": "^2.0.3",
"rollup": "^1.1.2",
"rollup-plugin-node-resolve": "^4.0.0",
"yamljs": "^0.3.0"
}
}