-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.06 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
{
"name": "intermediate-react",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:Bambuu/intermediate-react.git",
"author": "bambuu ApS",
"contributors": [
"Jeppe Reinhold <[email protected]> (https://reinhold.is)",
"Gustav Wengel <[email protected]> (https://gustavwengel.dk)"
],
"license": "UNLICENSED",
"private": false,
"eslintConfig": {
"extends": "react-app",
"rules": {
"jsx-a11y/anchor-is-valid": "off"
}
},
"scripts": {
"setupAll": "cd part1 && npm install && cd ../part2 && npm install && cd ../part3 && npm install && cd ../part4 && npm install && cd ../part5 && npm install && cd ../part6 && npm install",
"setupPart1": "cd part1 && npm install",
"part1": "cd part1 && npm run start",
"part2": "cd part2 && npm run start",
"part3": "cd part3 && npm run start",
"part4": "cd part4 && npm run start",
"part5": "cd part5 && npm run start",
"part6": "cd part6 && npm run start",
"final": "cd final && npm run start"
},
"devDependencies": {
"markdown-to-html": "0.0.13"
}
}